2009-01-13 04:40:13 +05:00
|
|
|
#include <mystdlib.h>
|
2017-08-17 23:24:03 +05:00
|
|
|
#include <atomic>
|
2020-03-15 22:02:50 +05:00
|
|
|
#include <set>
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "meshing.hpp"
|
2019-10-29 20:11:03 +05:00
|
|
|
|
|
|
|
#ifdef NG_PYTHON
|
|
|
|
// must be included to instantiate Archive::Shallow(NetgenGeometry&)
|
2019-07-11 19:23:22 +05:00
|
|
|
#include <core/python_ngcore.hpp>
|
2019-10-29 20:11:03 +05:00
|
|
|
#endif
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
2019-08-18 16:55:57 +05:00
|
|
|
|
2016-02-22 22:43:51 +05:00
|
|
|
static mutex buildsearchtree_mutex;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Mesh :: Mesh ()
|
2018-03-09 01:36:26 +05:00
|
|
|
: topology(*this), surfarea(*this)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-09 12:02:50 +05:00
|
|
|
boundaryedges = nullptr;
|
|
|
|
surfelementht = nullptr;
|
|
|
|
segmentht = nullptr;
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
lochfunc = nullptr;
|
2019-07-29 20:46:09 +05:00
|
|
|
// mglevels = 1;
|
2019-08-09 12:02:50 +05:00
|
|
|
elementsearchtree = nullptr;
|
2009-04-20 03:15:26 +06:00
|
|
|
elementsearchtreets = NextTimeStamp();
|
|
|
|
majortimestamp = timestamp = NextTimeStamp();
|
|
|
|
hglob = 1e10;
|
|
|
|
hmin = 0;
|
|
|
|
numvertices = -1;
|
|
|
|
dimension = 3;
|
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
curvedelems = make_unique<CurvedElements> (*this);
|
|
|
|
clusters = make_unique<AnisotropicClusters> (*this);
|
|
|
|
ident = make_unique<Identifications> (*this);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
hpelements = NULL;
|
|
|
|
coarsemesh = NULL;
|
|
|
|
|
|
|
|
ps_startelement = 0;
|
|
|
|
|
|
|
|
geomtype = NO_GEOM;
|
|
|
|
|
|
|
|
bcnames.SetSize(0);
|
2016-10-04 22:30:57 +05:00
|
|
|
cd2names.SetSize(0);
|
2011-05-13 17:41:53 +06:00
|
|
|
|
2019-02-13 02:11:55 +05:00
|
|
|
// this->comm = netgen :: ng_comm;
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef PARALLEL
|
2019-08-09 12:02:50 +05:00
|
|
|
paralleltop = make_unique<ParallelMeshTopology> (*this);
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Mesh :: ~Mesh()
|
|
|
|
{
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete lochfunc;
|
|
|
|
// delete boundaryedges;
|
|
|
|
// delete surfelementht;
|
|
|
|
// delete segmentht;
|
|
|
|
// delete curvedelems;
|
|
|
|
// delete clusters;
|
|
|
|
// delete ident;
|
|
|
|
// delete elementsearchtree;
|
|
|
|
// delete coarsemesh;
|
|
|
|
// delete hpelements;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < materials.Size(); i++)
|
2016-02-27 00:30:40 +05:00
|
|
|
delete materials[i];
|
2009-04-20 03:15:26 +06:00
|
|
|
for(int i = 0; i < userdata_int.Size(); i++)
|
|
|
|
delete userdata_int[i];
|
|
|
|
for(int i = 0; i < userdata_double.Size(); i++)
|
|
|
|
delete userdata_double[i];
|
|
|
|
|
|
|
|
for (int i = 0; i < bcnames.Size(); i++ )
|
2016-02-27 00:30:40 +05:00
|
|
|
delete bcnames[i];
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2016-10-04 22:30:57 +05:00
|
|
|
for (int i = 0; i < cd2names.Size(); i++)
|
|
|
|
delete cd2names[i];
|
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
// #ifdef PARALLEL
|
|
|
|
// delete paralleltop;
|
|
|
|
// #endif
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2019-02-12 02:12:29 +05:00
|
|
|
void Mesh :: SetCommunicator(NgMPI_Comm acomm)
|
2019-02-11 13:11:57 +05:00
|
|
|
{
|
|
|
|
this->comm = acomm;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
Mesh & Mesh :: operator= (const Mesh & mesh2)
|
|
|
|
{
|
2019-11-29 16:30:37 +05:00
|
|
|
geometry = mesh2.geometry;
|
2019-04-10 17:13:12 +05:00
|
|
|
dimension = mesh2.dimension;
|
2009-04-20 03:15:26 +06:00
|
|
|
points = mesh2.points;
|
|
|
|
segments = mesh2.segments;
|
|
|
|
surfelements = mesh2.surfelements;
|
|
|
|
volelements = mesh2.volelements;
|
|
|
|
lockedpoints = mesh2.lockedpoints;
|
|
|
|
facedecoding = mesh2.facedecoding;
|
|
|
|
dimension = mesh2.dimension;
|
|
|
|
|
2019-06-24 15:45:44 +05:00
|
|
|
|
|
|
|
materials.SetSize( mesh2.materials.Size() );
|
|
|
|
for ( int i = 0; i < mesh2.materials.Size(); i++ )
|
|
|
|
if ( mesh2.materials[i] ) materials[i] = new string ( *mesh2.materials[i] );
|
|
|
|
else materials[i] = 0;
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bcnames.SetSize( mesh2.bcnames.Size() );
|
|
|
|
for ( int i = 0; i < mesh2.bcnames.Size(); i++ )
|
|
|
|
if ( mesh2.bcnames[i] ) bcnames[i] = new string ( *mesh2.bcnames[i] );
|
|
|
|
else bcnames[i] = 0;
|
|
|
|
|
2019-06-24 15:45:44 +05:00
|
|
|
|
2016-10-04 22:30:57 +05:00
|
|
|
cd2names.SetSize(mesh2.cd2names.Size());
|
|
|
|
for (int i=0; i < mesh2.cd2names.Size(); i++)
|
|
|
|
if (mesh2.cd2names[i]) cd2names[i] = new string(*mesh2.cd2names[i]);
|
|
|
|
else cd2names[i] = 0;
|
|
|
|
|
2019-06-24 15:45:44 +05:00
|
|
|
cd3names.SetSize(mesh2.cd3names.Size());
|
|
|
|
for (int i=0; i < mesh2.cd3names.Size(); i++)
|
|
|
|
if (mesh2.cd3names[i]) cd3names[i] = new string(*mesh2.cd3names[i]);
|
|
|
|
else cd3names[i] = 0;
|
|
|
|
|
2019-06-24 22:43:21 +05:00
|
|
|
numvertices = mesh2.numvertices;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Mesh :: DeleteMesh()
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
points.SetSize(0);
|
|
|
|
segments.SetSize(0);
|
|
|
|
surfelements.SetSize(0);
|
|
|
|
volelements.SetSize(0);
|
|
|
|
lockedpoints.SetSize(0);
|
2017-04-11 12:01:36 +05:00
|
|
|
// surfacesonnode.SetSize(0);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete boundaryedges;
|
|
|
|
boundaryedges = nullptr;
|
|
|
|
segmentht = nullptr;
|
|
|
|
surfelementht = nullptr;
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
openelements.SetSize(0);
|
|
|
|
facedecoding.SetSize(0);
|
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
ident = make_unique<Identifications> (*this);
|
2017-02-25 23:48:37 +05:00
|
|
|
topology = MeshTopology (*this);
|
2019-08-09 12:02:50 +05:00
|
|
|
curvedelems = make_unique<CurvedElements> (*this);
|
|
|
|
clusters = make_unique<AnisotropicClusters> (*this);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
for ( int i = 0; i < bcnames.Size(); i++ )
|
|
|
|
if ( bcnames[i] ) delete bcnames[i];
|
2016-10-04 22:30:57 +05:00
|
|
|
for (int i= 0; i< cd2names.Size(); i++)
|
|
|
|
if (cd2names[i]) delete cd2names[i];
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
#ifdef PARALLEL
|
2019-08-09 12:02:50 +05:00
|
|
|
paralleltop = make_unique<ParallelMeshTopology> (*this);
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
lock.UnLock();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
timestamp = NextTimeStamp();
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2011-01-31 23:22:44 +05:00
|
|
|
void Mesh :: ClearSurfaceElements()
|
|
|
|
{
|
2019-08-07 11:28:57 +05:00
|
|
|
surfelements.SetSize(0);
|
|
|
|
/*
|
2011-01-31 23:22:44 +05:00
|
|
|
for (int i = 0; i < facedecoding.Size(); i++)
|
|
|
|
facedecoding[i].firstelement = -1;
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
for (auto & fd : facedecoding)
|
|
|
|
fd.firstelement = -1;
|
|
|
|
|
2011-01-31 23:22:44 +05:00
|
|
|
timestamp = NextTimeStamp();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PointIndex Mesh :: AddPoint (const Point3d & p, int layer)
|
|
|
|
{
|
2013-04-03 02:29:05 +06:00
|
|
|
return AddPoint (p, layer, INNERPOINT);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PointIndex Mesh :: AddPoint (const Point3d & p, int layer, POINTTYPE type)
|
|
|
|
{
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-08-09 18:30:58 +05:00
|
|
|
// PointIndex pi = points.End();
|
|
|
|
PointIndex pi = *points.Range().end();
|
2019-09-23 14:22:50 +05:00
|
|
|
if (points.Size() == points.AllocSize())
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
points.Append ( MeshPoint (p, layer, type) );
|
|
|
|
lock.UnLock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
points.Append ( MeshPoint (p, layer, type) );
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-09-23 14:22:50 +05:00
|
|
|
timestamp = NextTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return pi;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SegmentIndex Mesh :: AddSegment (const Segment & s)
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
timestamp = NextTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int maxn = max2 (s[0], s[1]);
|
|
|
|
maxn += 1-PointIndex::BASE;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
if (maxn > ptyps.Size())
|
|
|
|
{
|
|
|
|
int maxo = ptyps.Size();
|
|
|
|
ptyps.SetSize (maxn);
|
|
|
|
for (int i = maxo; i < maxn; i++)
|
|
|
|
ptyps[i] = INNERPOINT;
|
|
|
|
}
|
|
|
|
|
2009-04-03 20:39:52 +06:00
|
|
|
if (ptyps[s[0]] > EDGEPOINT) ptyps[s[0]] = EDGEPOINT;
|
|
|
|
if (ptyps[s[1]] > EDGEPOINT) ptyps[s[1]] = EDGEPOINT;
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (maxn <= points.Size())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if (points[s[0]].Type() > EDGEPOINT)
|
|
|
|
points[s[0]].SetType (EDGEPOINT);
|
|
|
|
if (points[s[1]].Type() > EDGEPOINT)
|
|
|
|
points[s[1]].SetType (EDGEPOINT);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cerr << "edge points nrs > points.Size" << endl;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SegmentIndex si = segments.Size();
|
|
|
|
segments.Append (s);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
lock.UnLock();
|
|
|
|
return si;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SurfaceElementIndex Mesh :: AddSurfaceElement (const Element2d & el)
|
|
|
|
{
|
|
|
|
timestamp = NextTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-09-23 14:22:50 +05:00
|
|
|
PointIndex maxn = el[0];
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i < el.GetNP(); i++)
|
|
|
|
if (el[i] > maxn) maxn = el[i];
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2019-08-07 11:28:57 +05:00
|
|
|
maxn += 1-PointIndex::BASE;
|
2009-04-20 03:15:26 +06:00
|
|
|
if (maxn <= points.Size())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < el.GetNP(); i++)
|
|
|
|
if (points[el[i]].Type() > SURFACEPOINT)
|
|
|
|
points[el[i]].SetType(SURFACEPOINT);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2019-08-09 18:30:58 +05:00
|
|
|
// if (maxn < points.End())
|
|
|
|
if (maxn < *points.Range().end())
|
2019-08-07 11:28:57 +05:00
|
|
|
for (PointIndex pi : el.PNums())
|
|
|
|
if (points[pi].Type() > SURFACEPOINT)
|
|
|
|
points[pi].SetType(SURFACEPOINT);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-08-07 11:28:57 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SurfaceElementIndex si = surfelements.Size();
|
2019-09-23 14:22:50 +05:00
|
|
|
if (surfelements.AllocSize() == surfelements.Size())
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
surfelements.Append (el);
|
|
|
|
lock.UnLock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
surfelements.Append (el);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
if (el.index<=0 || el.index > facedecoding.Size())
|
2009-04-20 03:15:26 +06:00
|
|
|
cerr << "has no facedecoding: fd.size = " << facedecoding.Size() << ", ind = " << el.index << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
surfelements.Last().next = facedecoding[el.index-1].firstelement;
|
|
|
|
facedecoding[el.index-1].firstelement = si;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
if (SurfaceArea().Valid())
|
|
|
|
SurfaceArea().Add (el);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return si;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-08-17 23:08:08 +05:00
|
|
|
void Mesh :: SetSurfaceElement (SurfaceElementIndex sei, const Element2d & el)
|
|
|
|
{
|
|
|
|
int maxn = el[0];
|
|
|
|
for (int i = 1; i < el.GetNP(); i++)
|
|
|
|
if (el[i] > maxn) maxn = el[i];
|
|
|
|
|
|
|
|
maxn += 1-PointIndex::BASE;
|
|
|
|
|
|
|
|
if (maxn <= points.Size())
|
|
|
|
{
|
|
|
|
for (int i = 0; i < el.GetNP(); i++)
|
|
|
|
if (points[el[i]].Type() > SURFACEPOINT)
|
|
|
|
points[el[i]].SetType(SURFACEPOINT);
|
|
|
|
}
|
|
|
|
|
|
|
|
surfelements[sei] = el;
|
|
|
|
if (el.index > facedecoding.Size())
|
|
|
|
cerr << "has no facedecoding: fd.size = " << facedecoding.Size() << ", ind = " << el.index << endl;
|
|
|
|
|
2017-08-17 23:58:08 +05:00
|
|
|
// add lock-free to list ... slow, call RebuildSurfaceElementLists later
|
2017-08-17 23:08:08 +05:00
|
|
|
/*
|
|
|
|
surfelements[sei].next = facedecoding[el.index-1].firstelement;
|
|
|
|
auto & head = reinterpret_cast<atomic<SurfaceElementIndex>&> (facedecoding[el.index-1].firstelement);
|
|
|
|
while (!head.compare_exchange_weak (surfelements[sei].next, sei))
|
|
|
|
;
|
2017-08-17 23:27:41 +05:00
|
|
|
*/
|
2017-08-17 23:58:08 +05:00
|
|
|
|
2017-08-17 23:08:08 +05:00
|
|
|
/*
|
|
|
|
if (SurfaceArea().Valid())
|
|
|
|
SurfaceArea().Add (el);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
ElementIndex Mesh :: AddVolumeElement (const Element & el)
|
|
|
|
{
|
2019-08-07 11:28:57 +05:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
int maxn = el[0];
|
|
|
|
for (int i = 1; i < el.GetNP(); i++)
|
|
|
|
if (el[i] > maxn) maxn = el[i];
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
maxn += 1-PointIndex::BASE;
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
if (maxn > ptyps.Size())
|
|
|
|
{
|
|
|
|
int maxo = ptyps.Size();
|
|
|
|
ptyps.SetSize (maxn);
|
|
|
|
for (i = maxo+PointIndex::BASE;
|
|
|
|
i < maxn+PointIndex::BASE; i++)
|
|
|
|
ptyps[i] = INNERPOINT;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
if (maxn > points.Size())
|
|
|
|
{
|
|
|
|
cerr << "add vol element before point" << endl;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int ve = volelements.Size();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-09-24 00:50:42 +05:00
|
|
|
if (volelements.Size() == volelements.AllocSize())
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
volelements.Append (el);
|
|
|
|
lock.UnLock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
volelements.Append (el);
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
volelements.Last().flags.illegal_valid = 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// while (volelements.Size() > eltyps.Size())
|
|
|
|
// eltyps.Append (FREEELEMENT);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
timestamp = NextTimeStamp();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return ve;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2018-01-04 22:45:07 +05:00
|
|
|
void Mesh :: SetVolumeElement (ElementIndex ei, const Element & el)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
int maxn = el[0];
|
|
|
|
for (int i = 1; i < el.GetNP(); i++)
|
|
|
|
if (el[i] > maxn) maxn = el[i];
|
|
|
|
|
|
|
|
maxn += 1-PointIndex::BASE;
|
|
|
|
*/
|
|
|
|
|
|
|
|
volelements[ei] = el;
|
2019-08-09 03:23:12 +05:00
|
|
|
volelements[ei].flags.illegal_valid = 0;
|
2018-01-04 22:45:07 +05:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Save (const string & filename) const
|
|
|
|
{
|
2017-09-29 17:47:16 +05:00
|
|
|
ostream * outfile;
|
2017-10-30 17:43:01 +05:00
|
|
|
if (filename.find(".vol.gz")!=string::npos)
|
2017-09-29 17:47:16 +05:00
|
|
|
outfile = new ogzstream(filename.c_str());
|
2017-10-30 17:43:01 +05:00
|
|
|
else if (filename.find(".vol")!=string::npos)
|
2017-09-29 17:47:16 +05:00
|
|
|
outfile = new ofstream(filename.c_str());
|
|
|
|
else
|
|
|
|
outfile = new ogzstream((filename+".vol.gz").c_str());
|
|
|
|
|
|
|
|
Save(*outfile);
|
|
|
|
delete outfile;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Save (ostream & outfile) const
|
|
|
|
{
|
|
|
|
int i, j;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double scale = 1; // globflags.GetNumFlag ("scale", 1);
|
|
|
|
int inverttets = 0; // globflags.GetDefineFlag ("inverttets");
|
|
|
|
int invertsurf = 0; // globflags.GetDefineFlag ("invertsurfacemesh");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "mesh3d" << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "dimension\n" << GetDimension() << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "geomtype\n" << int(geomtype) << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "\n";
|
|
|
|
outfile << "# surfnr bcnr domin domout np p1 p2 p3"
|
|
|
|
<< "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
switch (geomtype)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
case GEOM_STL:
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "surfaceelementsgi" << "\n";
|
|
|
|
break;
|
2009-01-13 04:40:13 +05:00
|
|
|
case GEOM_OCC: case GEOM_ACIS:
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "surfaceelementsuv" << "\n";
|
|
|
|
break;
|
2009-01-13 04:40:13 +05:00
|
|
|
default:
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "surfaceelements" << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << GetNSE() << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-08-07 11:28:57 +05:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if ((*this)[sei].GetIndex())
|
|
|
|
{
|
2013-02-26 19:00:06 +06:00
|
|
|
outfile << " " << GetFaceDescriptor((*this)[sei].GetIndex ()).SurfNr()+1;
|
|
|
|
outfile << " " << GetFaceDescriptor((*this)[sei].GetIndex ()).BCProperty();
|
|
|
|
outfile << " " << GetFaceDescriptor((*this)[sei].GetIndex ()).DomainIn();
|
|
|
|
outfile << " " << GetFaceDescriptor((*this)[sei].GetIndex ()).DomainOut();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
2013-02-26 19:00:06 +06:00
|
|
|
outfile << " 0 0 0";
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Element2d sel = (*this)[sei];
|
|
|
|
if (invertsurf)
|
|
|
|
sel.Invert();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-02-26 19:00:06 +06:00
|
|
|
outfile << " " << sel.GetNP();
|
2009-04-20 03:15:26 +06:00
|
|
|
for (j = 0; j < sel.GetNP(); j++)
|
2013-02-26 19:00:06 +06:00
|
|
|
outfile << " " << sel[j];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
switch (geomtype)
|
|
|
|
{
|
|
|
|
case GEOM_STL:
|
2009-01-13 04:40:13 +05:00
|
|
|
for (j = 1; j <= sel.GetNP(); j++)
|
2013-02-26 19:00:06 +06:00
|
|
|
outfile << " " << sel.GeomInfoPi(j).trignum;
|
2009-01-13 04:40:13 +05:00
|
|
|
break;
|
2009-04-20 03:15:26 +06:00
|
|
|
case GEOM_OCC: case GEOM_ACIS:
|
2009-01-13 04:40:13 +05:00
|
|
|
for (j = 1; j <= sel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
outfile << " " << sel.GeomInfoPi(j).u;
|
|
|
|
outfile << " " << sel.GeomInfoPi(j).v;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
break;
|
2009-04-20 03:15:26 +06:00
|
|
|
default:
|
2013-02-26 19:00:06 +06:00
|
|
|
;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2010-04-09 14:01:13 +06:00
|
|
|
outfile << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "\n" << "\n";
|
|
|
|
outfile << "# matnr np p1 p2 p3 p4" << "\n";
|
|
|
|
outfile << "volumeelements" << "\n";
|
|
|
|
outfile << GetNE() << "\n";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (ElementIndex ei = 0; ei < GetNE(); ei++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << (*this)[ei].GetIndex();
|
2012-08-20 20:10:23 +06:00
|
|
|
outfile << " " << (*this)[ei].GetNP();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Element el = (*this)[ei];
|
2012-08-20 20:10:23 +06:00
|
|
|
if (inverttets) el.Invert();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (j = 0; j < el.GetNP(); j++)
|
2012-08-20 20:10:23 +06:00
|
|
|
outfile << " " << el[j];
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
outfile << "\n" << "\n";
|
|
|
|
// outfile << " surf1 surf2 p1 p2" << "\n";
|
|
|
|
outfile << "# surfid 0 p1 p2 trignum1 trignum2 domin/surfnr1 domout/surfnr2 ednr1 dist1 ednr2 dist2 \n";
|
|
|
|
outfile << "edgesegmentsgi2" << "\n";
|
|
|
|
outfile << GetNSeg() << "\n";
|
|
|
|
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment (i);
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.si; // 2D: bc number, 3D: wievielte Kante
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << 0;
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg[0];
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg[1];
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.geominfo[0].trignum; // stl dreiecke
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.geominfo[1].trignum; // << endl; // stl dreieck
|
|
|
|
|
|
|
|
if (dimension == 3)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.surfnr1+1;
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.surfnr2+1;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.domin;
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.domout;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << seg.edgenr;
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(12);
|
|
|
|
outfile.precision(16);
|
|
|
|
outfile << seg.epgeominfo[0].dist; // splineparameter (2D)
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(8);
|
|
|
|
outfile.precision(16);
|
|
|
|
outfile << seg.epgeominfo[1].edgenr; // geometry dependent
|
|
|
|
outfile << " ";
|
|
|
|
outfile.width(12);
|
|
|
|
outfile << seg.epgeominfo[1].dist;
|
|
|
|
|
|
|
|
outfile << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
outfile << "\n" << "\n";
|
|
|
|
outfile << "# X Y Z" << "\n";
|
|
|
|
outfile << "points" << "\n";
|
|
|
|
outfile << GetNP() << "\n";
|
|
|
|
outfile.precision(16);
|
|
|
|
outfile.setf (ios::fixed, ios::floatfield);
|
|
|
|
outfile.setf (ios::showpoint);
|
|
|
|
|
|
|
|
PointIndex pi;
|
|
|
|
for (pi = PointIndex::BASE;
|
2009-04-01 03:08:17 +06:00
|
|
|
pi < GetNP()+PointIndex::BASE; pi++)
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile.width(22);
|
|
|
|
outfile << (*this)[pi](0)/scale << " ";
|
|
|
|
outfile.width(22);
|
|
|
|
outfile << (*this)[pi](1)/scale << " ";
|
|
|
|
outfile.width(22);
|
|
|
|
outfile << (*this)[pi](2)/scale << "\n";
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (ident -> GetMaxNr() > 0)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "identifications\n";
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<INDEX_2> identpairs;
|
2009-04-20 03:15:26 +06:00
|
|
|
int cnt = 0;
|
|
|
|
for (i = 1; i <= ident -> GetMaxNr(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
ident -> GetPairs (i, identpairs);
|
|
|
|
cnt += identpairs.Size();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
outfile << cnt << "\n";
|
|
|
|
for (i = 1; i <= ident -> GetMaxNr(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
ident -> GetPairs (i, identpairs);
|
|
|
|
for (j = 1; j <= identpairs.Size(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
outfile.width (8);
|
|
|
|
outfile << identpairs.Get(j).I1();
|
|
|
|
outfile.width (8);
|
|
|
|
outfile << identpairs.Get(j).I2();
|
|
|
|
outfile.width (8);
|
|
|
|
outfile << i << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
outfile << "identificationtypes\n";
|
|
|
|
outfile << ident -> GetMaxNr() << "\n";
|
|
|
|
for (i = 1; i <= ident -> GetMaxNr(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int type = ident -> GetType(i);
|
|
|
|
outfile << " " << type;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
outfile << "\n";
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cntmat = 0;
|
|
|
|
for (i = 1; i <= materials.Size(); i++)
|
2016-02-27 00:30:40 +05:00
|
|
|
if (materials.Get(i) && materials.Get(i)->length())
|
2009-04-20 03:15:26 +06:00
|
|
|
cntmat++;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (cntmat)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "materials" << endl;
|
|
|
|
outfile << cntmat << endl;
|
|
|
|
for (i = 1; i <= materials.Size(); i++)
|
2016-02-27 00:30:40 +05:00
|
|
|
if (materials.Get(i) && materials.Get(i)->length())
|
2016-03-22 17:00:20 +05:00
|
|
|
outfile << i << " " << *materials.Get(i) << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cntbcnames = 0;
|
|
|
|
for ( int ii = 0; ii < bcnames.Size(); ii++ )
|
|
|
|
if ( bcnames[ii] ) cntbcnames++;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if ( cntbcnames )
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "\n\nbcnames" << endl << bcnames.Size() << endl;
|
|
|
|
for ( i = 0; i < bcnames.Size(); i++ )
|
|
|
|
outfile << i+1 << "\t" << GetBCName(i) << endl;
|
|
|
|
outfile << endl << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2016-10-04 22:30:57 +05:00
|
|
|
int cntcd2names = 0;
|
|
|
|
for (int ii = 0; ii<cd2names.Size(); ii++)
|
|
|
|
if(cd2names[ii]) cntcd2names++;
|
|
|
|
|
|
|
|
if(cntcd2names)
|
|
|
|
{
|
|
|
|
outfile << "\n\ncd2names" << endl << cd2names.Size() << endl;
|
|
|
|
for (i=0; i<cd2names.Size(); i++)
|
|
|
|
outfile << i+1 << "\t" << GetCD2Name(i) << endl;
|
|
|
|
outfile << endl << endl;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
if ( GetDimension() == 2 )
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
const Segment & seg = LineSegment (i);
|
|
|
|
if ( ! bcprops.Contains(seg.si) && seg.GetBCName() != "" )
|
|
|
|
{
|
|
|
|
bcprops.Append(seg.si);
|
|
|
|
cntbcnames++;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-13 04:40:13 +05:00
|
|
|
for (sei = 0; sei < GetNSE(); sei++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
if ((*this)[sei].GetIndex())
|
|
|
|
{
|
|
|
|
int bcp = GetFaceDescriptor((*this)[sei].GetIndex ()).BCProperty();
|
|
|
|
string name = GetFaceDescriptor((*this)[sei].GetIndex ()).BCName();
|
|
|
|
if ( !bcprops.Contains(bcp) &&
|
|
|
|
name != "" )
|
|
|
|
{
|
|
|
|
bcprops.Append(bcp);
|
|
|
|
cntbcnames++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
bcprops.SetSize(0);
|
|
|
|
if ( cntbcnames )
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
outfile << "\nbcnames" << endl << cntbcnames << endl;
|
|
|
|
if ( GetDimension() == 2 )
|
|
|
|
{
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment (i);
|
|
|
|
if ( ! bcprops.Contains(seg.si) && seg.GetBCName() != "" )
|
|
|
|
{
|
|
|
|
bcprops.Append(seg.si);
|
|
|
|
outfile << seg.si << "\t" << seg.GetBCName() << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (sei = 0; sei < GetNSE(); sei++)
|
|
|
|
{
|
|
|
|
if ((*this)[sei].GetIndex())
|
|
|
|
{
|
|
|
|
int bcp = GetFaceDescriptor((*this)[sei].GetIndex ()).BCProperty();
|
|
|
|
string name = GetFaceDescriptor((*this)[sei].GetIndex ()).BCName();
|
|
|
|
if ( !bcprops.Contains(bcp) &&
|
|
|
|
name != "" )
|
|
|
|
{
|
|
|
|
bcprops.Append(bcp);
|
|
|
|
outfile << bcp << "\t" << name << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
outfile << endl << endl;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cnt_sing = 0;
|
2019-08-07 11:28:57 +05:00
|
|
|
// for (PointIndex pi = points.Begin(); pi < points.End(); pi++)
|
|
|
|
// if ((*this)[pi].Singularity()>=1.) cnt_sing++;
|
|
|
|
for (auto & p : points)
|
|
|
|
if (p.Singularity() >= 1.) cnt_sing++;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (cnt_sing)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "singular_points" << endl << cnt_sing << endl;
|
2019-08-09 18:30:58 +05:00
|
|
|
// for (PointIndex pi = points.Begin(); pi < points.End(); pi++)
|
|
|
|
for (PointIndex pi : points.Range())
|
2009-04-20 03:15:26 +06:00
|
|
|
if ((*this)[pi].Singularity()>=1.)
|
|
|
|
outfile << int(pi) << "\t" << (*this)[pi].Singularity() << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
cnt_sing = 0;
|
|
|
|
for (SegmentIndex si = 0; si < GetNSeg(); si++)
|
|
|
|
if ( segments[si].singedge_left ) cnt_sing++;
|
|
|
|
if (cnt_sing)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "singular_edge_left" << endl << cnt_sing << endl;
|
|
|
|
for (SegmentIndex si = 0; si < GetNSeg(); si++)
|
|
|
|
if ( segments[si].singedge_left )
|
|
|
|
outfile << int(si) << "\t" << segments[si].singedge_left << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
cnt_sing = 0;
|
|
|
|
for (SegmentIndex si = 0; si < GetNSeg(); si++)
|
|
|
|
if ( segments[si].singedge_right ) cnt_sing++;
|
|
|
|
if (cnt_sing)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "singular_edge_right" << endl << cnt_sing << endl;
|
|
|
|
for (SegmentIndex si = 0; si < GetNSeg(); si++)
|
|
|
|
if ( segments[si].singedge_right )
|
|
|
|
outfile << int(si) << "\t" << segments[si].singedge_right << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
cnt_sing = 0;
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
if ( GetFaceDescriptor ((*this)[sei].GetIndex()).domin_singular)
|
|
|
|
cnt_sing++;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (cnt_sing)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "singular_face_inside" << endl << cnt_sing << endl;
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
if ( GetFaceDescriptor ((*this)[sei].GetIndex()).domin_singular)
|
|
|
|
outfile << int(sei) << "\t" <<
|
|
|
|
GetFaceDescriptor ((*this)[sei].GetIndex()).domin_singular << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
cnt_sing = 0;
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
if ( GetFaceDescriptor ((*this)[sei].GetIndex()).domout_singular) cnt_sing++;
|
|
|
|
if (cnt_sing)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
outfile << "singular_face_outside" << endl << cnt_sing << endl;
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
if ( GetFaceDescriptor ((*this)[sei].GetIndex()).domout_singular)
|
|
|
|
outfile << int(sei) << "\t"
|
|
|
|
<< GetFaceDescriptor ((*this)[sei].GetIndex()).domout_singular << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-07-10 17:59:24 +06:00
|
|
|
// Philippose - 09/07/2009
|
|
|
|
// Add mesh face colours to Netgen Vol file format
|
|
|
|
// The colours are saved in RGB triplets
|
|
|
|
int cnt_facedesc = GetNFD();
|
|
|
|
if (cnt_facedesc)
|
|
|
|
{
|
|
|
|
outfile << endl << endl << "# Surfnr Red Green Blue" << endl;
|
|
|
|
outfile << "face_colours" << endl << cnt_facedesc << endl;
|
|
|
|
|
|
|
|
outfile.precision(8);
|
|
|
|
outfile.setf(ios::fixed, ios::floatfield);
|
|
|
|
outfile.setf(ios::showpoint);
|
|
|
|
|
|
|
|
for(i = 1; i <= cnt_facedesc; i++)
|
|
|
|
{
|
|
|
|
outfile.width(8);
|
|
|
|
outfile << GetFaceDescriptor(i).SurfNr()+1 << " ";
|
|
|
|
outfile.width(12);
|
2019-11-27 18:47:24 +05:00
|
|
|
outfile << GetFaceDescriptor(i).SurfColour()[0] << " ";
|
2009-07-10 17:59:24 +06:00
|
|
|
outfile.width(12);
|
2019-11-27 18:47:24 +05:00
|
|
|
outfile << GetFaceDescriptor(i).SurfColour()[1] << " ";
|
2009-07-10 17:59:24 +06:00
|
|
|
outfile.width(12);
|
2019-11-27 18:47:24 +05:00
|
|
|
outfile << GetFaceDescriptor(i).SurfColour()[2];
|
2009-07-10 17:59:24 +06:00
|
|
|
outfile << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-06 10:30:59 +05:00
|
|
|
outfile << endl << endl << "endmesh" << endl << endl;
|
|
|
|
if (geometry)
|
|
|
|
geometry -> SaveToMeshFile (outfile);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Load (const string & filename)
|
|
|
|
{
|
2014-08-30 06:15:59 +06:00
|
|
|
cout << "filename = " << filename << endl;
|
|
|
|
istream * infile = NULL;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
if (filename.find(".vol.gz") != string::npos)
|
|
|
|
infile = new igzstream (filename.c_str());
|
|
|
|
else
|
|
|
|
infile = new ifstream (filename.c_str());
|
|
|
|
|
|
|
|
// ifstream infile(filename.c_str());
|
|
|
|
if (! (infile -> good()) )
|
2009-04-20 03:15:26 +06:00
|
|
|
throw NgException ("mesh file not found");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
Load(*infile);
|
|
|
|
delete infile;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Load (istream & infile)
|
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
if (! (infile.good()) )
|
|
|
|
{
|
|
|
|
cout << "cannot load mesh" << endl;
|
|
|
|
throw NgException ("mesh file not found");
|
|
|
|
}
|
|
|
|
|
2019-02-28 15:57:45 +05:00
|
|
|
int rank = GetCommunicator().Rank();
|
|
|
|
int ntasks = GetCommunicator().Size();
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
char str[100];
|
|
|
|
int i, n;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double scale = 1; // globflags.GetNumFlag ("scale", 1);
|
|
|
|
int inverttets = 0; // globflags.GetDefineFlag ("inverttets");
|
|
|
|
int invertsurf = 0; // globflags.GetDefineFlag ("invertsurfacemesh");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
facedecoding.SetSize(0);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool endmesh = false;
|
2014-08-30 06:15:59 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
while (infile.good() && !endmesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> str;
|
|
|
|
if (strcmp (str, "dimension") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> dimension;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "geomtype") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int hi;
|
|
|
|
infile >> hi;
|
|
|
|
geomtype = GEOM_TYPE(hi);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "surfaceelements") == 0 || strcmp (str, "surfaceelementsgi")==0 || strcmp (str, "surfaceelementsuv") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " surface elements");
|
2012-02-12 08:58:02 +06:00
|
|
|
|
|
|
|
bool geominfo = strcmp (str, "surfaceelementsgi") == 0;
|
|
|
|
bool uv = strcmp (str, "surfaceelementsuv") == 0;
|
|
|
|
|
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int surfnr, bcp, domin, domout, nep, faceind = 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> surfnr >> bcp >> domin >> domout;
|
|
|
|
surfnr--;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-04-19 22:04:07 +06:00
|
|
|
bool invert_el = false;
|
|
|
|
/*
|
|
|
|
if (domin == 0)
|
|
|
|
{
|
|
|
|
invert_el = true;
|
|
|
|
Swap (domin, domout);
|
|
|
|
}
|
|
|
|
*/
|
2012-02-12 08:58:02 +06:00
|
|
|
|
2011-04-19 22:04:07 +06:00
|
|
|
for (int j = 1; j <= facedecoding.Size(); j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
if (GetFaceDescriptor(j).SurfNr() == surfnr &&
|
2009-04-20 03:15:26 +06:00
|
|
|
GetFaceDescriptor(j).BCProperty() == bcp &&
|
|
|
|
GetFaceDescriptor(j).DomainIn() == domin &&
|
|
|
|
GetFaceDescriptor(j).DomainOut() == domout)
|
|
|
|
faceind = j;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-02-12 08:58:02 +06:00
|
|
|
// if (facedecoding.Size()) faceind = 1; // for timing
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!faceind)
|
|
|
|
{
|
|
|
|
faceind = AddFaceDescriptor (FaceDescriptor(surfnr, domin, domout, 0));
|
|
|
|
GetFaceDescriptor(faceind).SetBCProperty (bcp);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> nep;
|
|
|
|
if (!nep) nep = 3;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Element2d tri(nep);
|
|
|
|
tri.SetIndex(faceind);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-04-19 22:04:07 +06:00
|
|
|
for (int j = 1; j <= nep; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> tri.PNum(j);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-02-12 08:58:02 +06:00
|
|
|
if (geominfo)
|
2011-04-19 22:04:07 +06:00
|
|
|
for (int j = 1; j <= nep; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> tri.GeomInfoPi(j).trignum;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-02-12 08:58:02 +06:00
|
|
|
if (uv)
|
2011-04-19 22:04:07 +06:00
|
|
|
for (int j = 1; j <= nep; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> tri.GeomInfoPi(j).u >> tri.GeomInfoPi(j).v;
|
2012-02-12 08:58:02 +06:00
|
|
|
|
|
|
|
if (invertsurf) tri.Invert();
|
|
|
|
if (invert_el) tri.Invert();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-02-12 08:58:02 +06:00
|
|
|
AddSurfaceElement (tri);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "volumeelements") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " volume elements");
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2017-04-13 13:40:47 +05:00
|
|
|
Element el(TET);
|
2009-04-20 03:15:26 +06:00
|
|
|
int hi, nep;
|
|
|
|
infile >> hi;
|
|
|
|
if (hi == 0) hi = 1;
|
|
|
|
el.SetIndex(hi);
|
|
|
|
infile >> nep;
|
|
|
|
el.SetNP(nep);
|
2016-02-16 11:33:58 +05:00
|
|
|
el.SetCurved (nep != 4);
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 0; j < nep; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> (int&)(el[j]);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (inverttets)
|
2009-04-01 03:08:17 +06:00
|
|
|
el.Invert();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-08-20 20:10:23 +06:00
|
|
|
AddVolumeElement (el);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "edgesegments") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1];
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "edgesegmentsgi") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1]
|
|
|
|
>> seg.geominfo[0].trignum
|
|
|
|
>> seg.geominfo[1].trignum;
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "edgesegmentsgi2") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int a;
|
|
|
|
infile >> a;
|
|
|
|
n=a;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
PrintMessage (3, n, " curve elements");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1]
|
|
|
|
>> seg.geominfo[0].trignum
|
|
|
|
>> seg.geominfo[1].trignum
|
|
|
|
>> seg.surfnr1 >> seg.surfnr2
|
|
|
|
>> seg.edgenr
|
|
|
|
>> seg.epgeominfo[0].dist
|
|
|
|
>> seg.epgeominfo[1].edgenr
|
|
|
|
>> seg.epgeominfo[1].dist;
|
|
|
|
|
|
|
|
seg.epgeominfo[0].edgenr = seg.epgeominfo[1].edgenr;
|
|
|
|
|
|
|
|
seg.domin = seg.surfnr1;
|
|
|
|
seg.domout = seg.surfnr2;
|
|
|
|
|
|
|
|
seg.surfnr1--;
|
|
|
|
seg.surfnr2--;
|
|
|
|
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "points") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " points");
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Point3d p;
|
|
|
|
infile >> p.X() >> p.Y() >> p.Z();
|
|
|
|
p.X() *= scale;
|
|
|
|
p.Y() *= scale;
|
|
|
|
p.Z() *= scale;
|
|
|
|
AddPoint (p);
|
|
|
|
}
|
2012-02-12 08:21:34 +06:00
|
|
|
PrintMessage (3, n, " points done");
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "identifications") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
2012-02-12 08:21:34 +06:00
|
|
|
PrintMessage (3, n, " identifications");
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PointIndex pi1, pi2;
|
|
|
|
int ind;
|
|
|
|
infile >> pi1 >> pi2 >> ind;
|
|
|
|
ident -> Add (pi1, pi2, ind);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "identificationtypes") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
2012-02-12 08:21:34 +06:00
|
|
|
PrintMessage (3, n, " identificationtypes");
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int type;
|
|
|
|
infile >> type;
|
|
|
|
ident -> SetType(i,Identifications::ID_TYPE(type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "materials") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
string mat;
|
|
|
|
infile >> nr >> mat;
|
|
|
|
SetMaterial (nr, mat.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcmp (str, "bcnames" ) == 0 )
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int,0> bcnrs(n);
|
2009-04-01 03:08:17 +06:00
|
|
|
SetNBCNames(n);
|
|
|
|
for ( i = 1; i <= n; i++ )
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
string nextbcname;
|
|
|
|
infile >> bcnrs[i-1] >> nextbcname;
|
|
|
|
bcnames[bcnrs[i-1]-1] = new string(nextbcname);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if ( GetDimension() == 2 )
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
Segment & seg = LineSegment (i);
|
|
|
|
if ( seg.si <= n )
|
|
|
|
seg.SetBCName (bcnames[seg.si-1]);
|
|
|
|
else
|
|
|
|
seg.SetBCName(0);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if ((*this)[sei].GetIndex())
|
|
|
|
{
|
|
|
|
int bcp = GetFaceDescriptor((*this)[sei].GetIndex ()).BCProperty();
|
|
|
|
if ( bcp <= n )
|
|
|
|
GetFaceDescriptor((*this)[sei].GetIndex ()).SetBCName(bcnames[bcp-1]);
|
|
|
|
else
|
|
|
|
GetFaceDescriptor((*this)[sei].GetIndex ()).SetBCName(0);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2016-10-04 22:30:57 +05:00
|
|
|
if ( strcmp (str, "cd2names" ) == 0)
|
|
|
|
{
|
|
|
|
infile >> n;
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int,0> cd2nrs(n);
|
2016-10-04 22:30:57 +05:00
|
|
|
SetNCD2Names(n);
|
|
|
|
for( i=1; i<=n; i++)
|
|
|
|
{
|
|
|
|
string nextcd2name;
|
|
|
|
infile >> cd2nrs[i-1] >> nextcd2name;
|
|
|
|
cd2names[cd2nrs[i-1]-1] = new string(nextcd2name);
|
|
|
|
}
|
|
|
|
if (GetDimension() == 2)
|
|
|
|
{
|
|
|
|
throw NgException("co dim 2 elements not implemented for dimension 2");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 1; i<= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
Segment & seg = LineSegment(i);
|
2019-02-11 13:11:57 +05:00
|
|
|
if ( seg.edgenr <= n )
|
2016-10-28 19:49:50 +05:00
|
|
|
seg.SetBCName (cd2names[seg.edgenr-1]);
|
2016-10-04 22:30:57 +05:00
|
|
|
else
|
|
|
|
seg.SetBCName(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "singular_points") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PointIndex pi;
|
|
|
|
double s;
|
|
|
|
infile >> pi;
|
|
|
|
infile >> s;
|
|
|
|
(*this)[pi].Singularity (s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "singular_edge_left") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
SegmentIndex si;
|
|
|
|
double s;
|
|
|
|
infile >> si;
|
|
|
|
infile >> s;
|
|
|
|
(*this)[si].singedge_left = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (strcmp (str, "singular_edge_right") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
SegmentIndex si;
|
|
|
|
double s;
|
|
|
|
infile >> si;
|
|
|
|
infile >> s;
|
|
|
|
(*this)[si].singedge_right = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "singular_face_inside") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
SurfaceElementIndex sei;
|
|
|
|
double s;
|
|
|
|
infile >> sei;
|
|
|
|
infile >> s;
|
|
|
|
GetFaceDescriptor((*this)[sei].GetIndex()).domin_singular = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "singular_face_outside") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
SurfaceElementIndex sei;
|
|
|
|
double s;
|
|
|
|
infile >> sei;
|
|
|
|
infile >> s;
|
|
|
|
GetFaceDescriptor((*this)[sei].GetIndex()).domout_singular = s;
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-07-10 17:59:24 +06:00
|
|
|
// Philippose - 09/07/2009
|
|
|
|
// Add mesh face colours to Netgen Vol file format
|
|
|
|
// The colours are read in as RGB triplets
|
|
|
|
if (strcmp (str, "face_colours") == 0)
|
|
|
|
{
|
|
|
|
int cnt_facedesc = GetNFD();
|
|
|
|
infile >> n;
|
|
|
|
if(n == cnt_facedesc)
|
|
|
|
{
|
|
|
|
for(i = 1; i <= n; i++)
|
|
|
|
{
|
|
|
|
int surfnr = 0;
|
|
|
|
Vec3d surfcolour(0.0,1.0,0.0);
|
|
|
|
|
|
|
|
infile >> surfnr
|
|
|
|
>> surfcolour.X()
|
|
|
|
>> surfcolour.Y()
|
|
|
|
>> surfcolour.Z();
|
|
|
|
|
|
|
|
surfnr--;
|
|
|
|
|
|
|
|
if(surfnr > 0)
|
|
|
|
{
|
|
|
|
for(int facedesc = 1; facedesc <= cnt_facedesc; facedesc++)
|
|
|
|
{
|
|
|
|
if(surfnr == GetFaceDescriptor(facedesc).SurfNr())
|
|
|
|
{
|
|
|
|
GetFaceDescriptor(facedesc).SetSurfColour(surfcolour);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "endmesh") == 0)
|
|
|
|
endmesh = true;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
strcpy (str, "");
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:19:25 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
CalcSurfacesOfNode ();
|
2012-08-20 20:10:23 +06:00
|
|
|
|
|
|
|
if (ntasks == 1) // sequential run only
|
|
|
|
{
|
2017-02-25 23:48:37 +05:00
|
|
|
topology.Update();
|
2012-08-20 20:10:23 +06:00
|
|
|
clusters -> Update();
|
|
|
|
}
|
2012-06-21 20:19:25 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SetNextMajorTimeStamp();
|
|
|
|
// PrintMemInfo (cout);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
void Mesh :: DoArchive (Archive & archive)
|
2018-04-27 11:36:06 +05:00
|
|
|
{
|
|
|
|
archive & dimension;
|
|
|
|
archive & points;
|
|
|
|
archive & surfelements;
|
|
|
|
archive & volelements;
|
2018-04-28 01:34:25 +05:00
|
|
|
archive & segments;
|
2018-04-27 11:36:06 +05:00
|
|
|
archive & facedecoding;
|
2019-02-26 15:18:11 +05:00
|
|
|
archive & materials & bcnames & cd2names & cd3names;
|
2019-04-11 16:57:14 +05:00
|
|
|
archive & numvertices;
|
2018-04-28 06:42:04 +05:00
|
|
|
|
2018-04-28 13:34:46 +05:00
|
|
|
archive & *ident;
|
2018-05-12 12:16:02 +05:00
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
archive.Shallow(geometry);
|
|
|
|
archive & *curvedelems;
|
2018-04-27 11:36:06 +05:00
|
|
|
|
|
|
|
if (archive.Input())
|
|
|
|
{
|
2019-02-13 02:11:55 +05:00
|
|
|
int rank = GetCommunicator().Rank();
|
|
|
|
int ntasks = GetCommunicator().Size();
|
2019-02-11 13:11:57 +05:00
|
|
|
|
2018-04-27 11:36:06 +05:00
|
|
|
RebuildSurfaceElementLists();
|
|
|
|
|
|
|
|
CalcSurfacesOfNode ();
|
|
|
|
if (ntasks == 1) // sequential run only
|
|
|
|
{
|
|
|
|
topology.Update();
|
|
|
|
clusters -> Update();
|
|
|
|
}
|
|
|
|
SetNextMajorTimeStamp();
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Merge (const string & filename, const int surfindex_offset)
|
|
|
|
{
|
|
|
|
ifstream infile(filename.c_str());
|
|
|
|
if (!infile.good())
|
|
|
|
throw NgException ("mesh file not found");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Merge(infile,surfindex_offset);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Merge (istream & infile, const int surfindex_offset)
|
|
|
|
{
|
|
|
|
char str[100];
|
|
|
|
int i, n;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int inverttets = 0; // globflags.GetDefineFlag ("inverttets");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int oldnp = GetNP();
|
|
|
|
int oldne = GetNSeg();
|
|
|
|
int oldnd = GetNDomains();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for(SurfaceElementIndex si = 0; si < GetNSE(); si++)
|
|
|
|
for(int j=1; j<=(*this)[si].GetNP(); j++) (*this)[si].GeomInfoPi(j).trignum = -1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int max_surfnr = 0;
|
|
|
|
for (i = 1; i <= GetNFD(); i++)
|
|
|
|
max_surfnr = max2 (max_surfnr, GetFaceDescriptor(i).SurfNr());
|
|
|
|
max_surfnr++;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(max_surfnr < surfindex_offset) max_surfnr = surfindex_offset;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool endmesh = false;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
while (infile.good() && !endmesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> str;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "surfaceelementsgi") == 0 || strcmp (str, "surfaceelements") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " surface elements");
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
int surfnr, bcp, domin, domout, nep, faceind = 0;
|
|
|
|
infile >> surfnr >> bcp >> domin >> domout;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
surfnr--;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(domin > 0) domin += oldnd;
|
|
|
|
if(domout > 0) domout += oldnd;
|
|
|
|
surfnr += max_surfnr;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (j = 1; j <= facedecoding.Size(); j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
if (GetFaceDescriptor(j).SurfNr() == surfnr &&
|
2009-04-20 03:15:26 +06:00
|
|
|
GetFaceDescriptor(j).BCProperty() == bcp &&
|
|
|
|
GetFaceDescriptor(j).DomainIn() == domin &&
|
|
|
|
GetFaceDescriptor(j).DomainOut() == domout)
|
|
|
|
faceind = j;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!faceind)
|
|
|
|
{
|
|
|
|
faceind = AddFaceDescriptor (FaceDescriptor(surfnr, domin, domout, 0));
|
|
|
|
if(GetDimension() == 2) bcp++;
|
|
|
|
GetFaceDescriptor(faceind).SetBCProperty (bcp);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> nep;
|
|
|
|
if (!nep) nep = 3;
|
|
|
|
|
|
|
|
Element2d tri(nep);
|
|
|
|
tri.SetIndex(faceind);
|
|
|
|
|
|
|
|
for (j = 1; j <= nep; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
infile >> tri.PNum(j);
|
|
|
|
tri.PNum(j) = tri.PNum(j) + oldnp;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "surfaceelementsgi") == 0)
|
|
|
|
for (j = 1; j <= nep; j++)
|
|
|
|
{
|
|
|
|
infile >> tri.GeomInfoPi(j).trignum;
|
|
|
|
tri.GeomInfoPi(j).trignum = -1;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
AddSurfaceElement (tri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (strcmp (str, "edgesegments") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1];
|
|
|
|
seg[0] = seg[0] + oldnp;
|
|
|
|
seg[1] = seg[1] + oldnp;
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "edgesegmentsgi") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1]
|
|
|
|
>> seg.geominfo[0].trignum
|
|
|
|
>> seg.geominfo[1].trignum;
|
|
|
|
seg[0] = seg[0] + oldnp;
|
|
|
|
seg[1] = seg[1] + oldnp;
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (strcmp (str, "edgesegmentsgi2") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " curve elements");
|
|
|
|
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment seg;
|
|
|
|
int hi;
|
|
|
|
infile >> seg.si >> hi >> seg[0] >> seg[1]
|
|
|
|
>> seg.geominfo[0].trignum
|
|
|
|
>> seg.geominfo[1].trignum
|
|
|
|
>> seg.surfnr1 >> seg.surfnr2
|
|
|
|
>> seg.edgenr
|
|
|
|
>> seg.epgeominfo[0].dist
|
|
|
|
>> seg.epgeominfo[1].edgenr
|
|
|
|
>> seg.epgeominfo[1].dist;
|
|
|
|
seg.epgeominfo[0].edgenr = seg.epgeominfo[1].edgenr;
|
|
|
|
|
|
|
|
seg.surfnr1--;
|
|
|
|
seg.surfnr2--;
|
|
|
|
|
|
|
|
if(seg.surfnr1 >= 0) seg.surfnr1 = seg.surfnr1 + max_surfnr;
|
|
|
|
if(seg.surfnr2 >= 0) seg.surfnr2 = seg.surfnr2 + max_surfnr;
|
|
|
|
seg[0] = seg[0] +oldnp;
|
|
|
|
seg[1] = seg[1] +oldnp;
|
2016-10-28 19:49:50 +05:00
|
|
|
*testout << "old edgenr: " << seg.edgenr << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
seg.edgenr = seg.edgenr + oldne;
|
2016-10-28 19:49:50 +05:00
|
|
|
*testout << "new edgenr: " << seg.edgenr << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
seg.epgeominfo[1].edgenr = seg.epgeominfo[1].edgenr + oldne;
|
|
|
|
|
|
|
|
AddSegment (seg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (str, "volumeelements") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " volume elements");
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2017-04-13 13:40:47 +05:00
|
|
|
Element el(TET);
|
2009-04-20 03:15:26 +06:00
|
|
|
int hi, nep;
|
|
|
|
infile >> hi;
|
|
|
|
if (hi == 0) hi = 1;
|
|
|
|
el.SetIndex(hi+oldnd);
|
|
|
|
infile >> nep;
|
|
|
|
el.SetNP(nep);
|
|
|
|
|
|
|
|
for (int j = 0; j < nep; j++)
|
|
|
|
{
|
|
|
|
infile >> (int&)(el[j]);
|
|
|
|
el[j] = el[j]+oldnp;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (inverttets)
|
2009-04-01 03:08:17 +06:00
|
|
|
el.Invert();
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
AddVolumeElement (el);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "points") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
PrintMessage (3, n, " points");
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Point3d p;
|
|
|
|
infile >> p.X() >> p.Y() >> p.Z();
|
|
|
|
AddPoint (p);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "endmesh") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
endmesh = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (strcmp (str, "materials") == 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
infile >> n;
|
|
|
|
for (i = 1; i <= n; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int nr;
|
|
|
|
string mat;
|
|
|
|
infile >> nr >> mat;
|
|
|
|
SetMaterial (nr+oldnd, mat.c_str());
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
strcpy (str, "");
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
CalcSurfacesOfNode ();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-02-25 23:48:37 +05:00
|
|
|
topology.Update();
|
2009-04-20 03:15:26 +06:00
|
|
|
clusters -> Update();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SetNextMajorTimeStamp();
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: TestOk () const
|
|
|
|
{
|
|
|
|
for (ElementIndex ei = 0; ei < volelements.Size(); ei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 0; j < 4; j++)
|
|
|
|
if ( (*this)[ei][j] <= PointIndex::BASE-1)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << "El " << ei << " has 0 nodes: ";
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
|
|
(*testout) << (*this)[ei][k];
|
|
|
|
break;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
CheckMesh3D (*this);
|
|
|
|
return 1;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SetAllocSize(int nnodes, int nsegs, int nsel, int nel)
|
|
|
|
{
|
|
|
|
points.SetAllocSize(nnodes);
|
|
|
|
segments.SetAllocSize(nsegs);
|
|
|
|
surfelements.SetAllocSize(nsel);
|
|
|
|
volelements.SetAllocSize(nel);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: BuildBoundaryEdges(void)
|
|
|
|
{
|
2019-09-30 14:05:13 +05:00
|
|
|
static Timer t("Mesh::BuildBoundaryEdges"); RegionTimer reg(t);
|
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete boundaryedges;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
boundaryedges = make_unique<INDEX_2_CLOSED_HASHTABLE<int>>
|
2009-04-20 03:15:26 +06:00
|
|
|
(3 * (GetNSE() + GetNOpenElements()) + GetNSeg() + 1);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// int si = sel.GetIndex();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2014-04-28 13:07:36 +06:00
|
|
|
if (sel.GetNP() <= 4)
|
|
|
|
for (int j = 0; j < sel.GetNP(); j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel.PNumMod(j+1);
|
|
|
|
i2.I2() = sel.PNumMod(j+2);
|
|
|
|
i2.Sort();
|
2009-04-20 03:15:26 +06:00
|
|
|
boundaryedges->Set (i2, 1);
|
2014-04-28 13:07:36 +06:00
|
|
|
}
|
|
|
|
else if (sel.GetType()==TRIG6)
|
|
|
|
{
|
|
|
|
for (int j = 0; j < 3; j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel[j];
|
|
|
|
i2.I2() = sel[(j+1)%3];
|
|
|
|
i2.Sort();
|
|
|
|
boundaryedges->Set (i2, 1);
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2014-04-28 13:07:36 +06:00
|
|
|
else
|
2017-12-05 02:32:47 +05:00
|
|
|
cerr << "illegal element for buildboundaryedges" << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < openelements.Size(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = openelements[i];
|
|
|
|
for (int j = 0; j < sel.GetNP(); j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel.PNumMod(j+1);
|
|
|
|
i2.I2() = sel.PNumMod(j+2);
|
|
|
|
i2.Sort();
|
|
|
|
boundaryedges->Set (i2, 1);
|
|
|
|
|
|
|
|
points[sel[j]].SetType(FIXEDPOINT);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = segments[i];
|
|
|
|
INDEX_2 i2(seg[0], seg[1]);
|
|
|
|
i2.Sort();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
boundaryedges -> Set (i2, 2);
|
|
|
|
//segmentht -> Set (i2, i);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: CalcSurfacesOfNode ()
|
|
|
|
{
|
2019-10-03 23:24:21 +05:00
|
|
|
static Timer t("Mesh::CalcSurfacesOfNode"); RegionTimer reg (t);
|
|
|
|
static Timer tn2se("Mesh::CalcSurfacesOfNode - surf on node");
|
|
|
|
static Timer tht("Mesh::CalcSurfacesOfNode - surfelementht");
|
2017-04-11 12:01:36 +05:00
|
|
|
// surfacesonnode.SetSize (GetNP());
|
|
|
|
TABLE<int,PointIndex::BASE> surfacesonnode(GetNP());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete boundaryedges;
|
|
|
|
// boundaryedges = NULL;
|
|
|
|
boundaryedges = nullptr;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete surfelementht;
|
|
|
|
// surfelementht = nullptr;
|
2017-04-11 12:01:36 +05:00
|
|
|
surfelementht = nullptr;
|
2019-08-09 12:02:50 +05:00
|
|
|
// delete segmentht;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
surfelementht = new INDEX_3_HASHTABLE<int> (GetNSE()/4 + 1);
|
|
|
|
segmentht = new INDEX_2_HASHTABLE<int> (GetNSeg() + 1);
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-04-11 12:01:36 +05:00
|
|
|
if (dimension == 3)
|
2019-08-09 12:02:50 +05:00
|
|
|
surfelementht = make_unique<INDEX_3_CLOSED_HASHTABLE<int>> (3*GetNSE() + 1);
|
|
|
|
segmentht = make_unique<INDEX_2_CLOSED_HASHTABLE<int>> (3*GetNSeg() + 1);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-03 23:24:21 +05:00
|
|
|
tn2se.Start();
|
2017-04-11 12:01:36 +05:00
|
|
|
if (dimension == 3)
|
2019-08-07 11:28:57 +05:00
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = surfelements[sei];
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
for (const Element2d & sel : surfelements)
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if (sel.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int si = sel.GetIndex();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-07 11:28:57 +05:00
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < sel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
PointIndex pi = sel[j];
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
for (PointIndex pi : sel.PNums())
|
|
|
|
{
|
2017-04-11 12:01:36 +05:00
|
|
|
if (!surfacesonnode[pi].Contains(si))
|
|
|
|
surfacesonnode.Add (pi, si);
|
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
bool found = 0;
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int k = 0; k < surfacesonnode[pi].Size(); k++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (surfacesonnode[pi][k] == si)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
found = 1;
|
|
|
|
break;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!found)
|
|
|
|
surfacesonnode.Add (pi, si);
|
2017-04-11 12:01:36 +05:00
|
|
|
*/
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
for (sei = 0; sei < GetNSE(); sei++)
|
|
|
|
{
|
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
|
|
|
|
|
|
|
INDEX_3 i3;
|
|
|
|
i3.I1() = sel.PNum(1);
|
|
|
|
i3.I2() = sel.PNum(2);
|
|
|
|
i3.I3() = sel.PNum(3);
|
|
|
|
i3.Sort();
|
|
|
|
surfelementht -> PrepareSet (i3);
|
|
|
|
}
|
|
|
|
|
|
|
|
surfelementht -> AllocateElements();
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2019-10-03 23:24:21 +05:00
|
|
|
tn2se.Stop();
|
|
|
|
|
|
|
|
tht.Start();
|
2017-04-11 12:01:36 +05:00
|
|
|
if (dimension==3)
|
2013-04-03 02:29:05 +06:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
INDEX_3 i3;
|
|
|
|
i3.I1() = sel.PNum(1);
|
|
|
|
i3.I2() = sel.PNum(2);
|
|
|
|
i3.I3() = sel.PNum(3);
|
|
|
|
i3.Sort();
|
|
|
|
surfelementht -> Set (i3, sei); // war das wichtig ??? sel.GetIndex());
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2019-10-03 23:24:21 +05:00
|
|
|
tht.Stop();
|
|
|
|
|
2014-08-15 20:46:26 +06:00
|
|
|
// int np = GetNP();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (dimension == 3)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-09-30 12:36:15 +05:00
|
|
|
static Timer t("Mesh::CalcSurfacesOfNode, pointloop"); RegionTimer reg (t);
|
2019-08-07 11:28:57 +05:00
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (PointIndex pi = points.Begin(); pi < points.End(); pi++)
|
2009-04-20 03:15:26 +06:00
|
|
|
points[pi].SetType (INNERPOINT);
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
for (auto & p : points)
|
|
|
|
p.SetType (INNERPOINT);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (GetNFD() == 0)
|
|
|
|
{
|
2013-04-03 02:29:05 +06:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < sel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PointIndex pi = SurfaceElement(sei)[j];
|
|
|
|
points[pi].SetType(FIXEDPOINT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-03 02:29:05 +06:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < sel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PointIndex pi = sel[j];
|
|
|
|
int ns = surfacesonnode[pi].Size();
|
|
|
|
if (ns == 1)
|
|
|
|
points[pi].SetType(SURFACEPOINT);
|
|
|
|
if (ns == 2)
|
|
|
|
points[pi].SetType(EDGEPOINT);
|
|
|
|
if (ns >= 3)
|
|
|
|
points[pi].SetType(FIXEDPOINT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-27 19:01:58 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2019-08-07 11:28:57 +05:00
|
|
|
/*
|
2013-05-27 19:01:58 +06:00
|
|
|
for (int i = 0; i < segments.Size(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = segments[i];
|
2019-08-07 11:28:57 +05:00
|
|
|
*/
|
|
|
|
for (const Segment & seg : segments)
|
|
|
|
{
|
2013-05-27 19:01:58 +06:00
|
|
|
for (int j = 1; j <= 2; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2013-05-27 19:01:58 +06:00
|
|
|
PointIndex hi = (j == 1) ? seg[0] : seg[1];
|
|
|
|
if (points[hi].Type() == INNERPOINT ||
|
|
|
|
points[hi].Type() == SURFACEPOINT)
|
|
|
|
points[hi].SetType(EDGEPOINT);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2013-05-27 19:01:58 +06:00
|
|
|
|
|
|
|
for (int i = 0; i < lockedpoints.Size(); i++)
|
|
|
|
points[lockedpoints[i]].SetType(FIXEDPOINT);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 0; i < openelements.Size(); i++)
|
|
|
|
{
|
|
|
|
const Element2d & sel = openelements[i];
|
|
|
|
for (j = 0; j < sel.GetNP(); j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel.PNumMod(j+1);
|
|
|
|
i2.I2() = sel.PNumMod(j+2);
|
|
|
|
i2.Sort();
|
|
|
|
boundaryedges->Set (i2, 1);
|
|
|
|
|
|
|
|
points[sel[j]].SetType(FIXEDPOINT);
|
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// eltyps.SetSize (GetNE());
|
|
|
|
// eltyps = FREEELEMENT;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = segments[i];
|
|
|
|
INDEX_2 i2(seg[0], seg[1]);
|
|
|
|
i2.Sort();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//boundaryedges -> Set (i2, 2);
|
|
|
|
segmentht -> Set (i2, i);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-28 17:00:49 +05:00
|
|
|
// NgBitArray base is PointIndex::BASE ...
|
|
|
|
void Mesh :: FixPoints (const NgBitArray & fixpoints)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (fixpoints.Size() != GetNP())
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
cerr << "Mesh::FixPoints: sizes don't fit" << endl;
|
|
|
|
return;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
int np = GetNP();
|
2019-08-10 03:21:37 +05:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= np; i++)
|
|
|
|
if (fixpoints.Test(i))
|
|
|
|
{
|
|
|
|
points.Elem(i).SetType (FIXEDPOINT);
|
|
|
|
}
|
2019-08-10 03:21:37 +05:00
|
|
|
*/
|
|
|
|
for (PointIndex pi : points.Range())
|
|
|
|
if (fixpoints.Test(pi))
|
|
|
|
points[pi].SetType(FIXEDPOINT);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: FindOpenElements (int dom)
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
static Timer t("Mesh::FindOpenElements"); RegionTimer reg (t);
|
2019-09-30 14:05:13 +05:00
|
|
|
static Timer t_table("Mesh::FindOpenElements - build table");
|
|
|
|
static Timer t_pointloop("Mesh::FindOpenElements - pointloop");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int np = GetNP();
|
|
|
|
int ne = GetNE();
|
|
|
|
int nse = GetNSE();
|
2019-10-03 23:24:21 +05:00
|
|
|
|
|
|
|
t_table.Start();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-03 23:24:21 +05:00
|
|
|
TableCreator<ElementIndex, PointIndex> creator(np);
|
|
|
|
|
|
|
|
for ( ; !creator.Done(); creator++)
|
|
|
|
// for (ElementIndex ei : Range(VolumeElements()))
|
|
|
|
ParallelFor
|
|
|
|
(Range(VolumeElements()), [&] (ElementIndex ei)
|
|
|
|
{
|
|
|
|
const Element & el = (*this)[ei];
|
|
|
|
if (dom == 0 || dom == el.GetIndex())
|
|
|
|
{
|
|
|
|
if (el.GetNP() == 4)
|
|
|
|
{
|
|
|
|
INDEX_4 i4(el[0], el[1], el[2], el[3]);
|
|
|
|
i4.Sort();
|
|
|
|
creator.Add (PointIndex(i4.I1()), ei);
|
|
|
|
creator.Add (PointIndex(i4.I2()), ei);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (PointIndex pi : el.PNums())
|
|
|
|
creator.Add(pi, ei);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
auto elsonpoint = creator.MoveTable();
|
2019-10-04 18:33:24 +05:00
|
|
|
|
|
|
|
ParallelFor (Range(elsonpoint), [&] (auto i)
|
|
|
|
{
|
|
|
|
QuickSort(elsonpoint[i]);
|
|
|
|
});
|
2019-10-03 23:24:21 +05:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int,PointIndex::BASE> numonpoint(np);
|
2019-10-03 23:24:21 +05:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
numonpoint = 0;
|
|
|
|
for (ElementIndex ei = 0; ei < ne; ei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element & el = (*this)[ei];
|
|
|
|
if (dom == 0 || dom == el.GetIndex())
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
if (el.GetNP() == 4)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
INDEX_4 i4(el[0], el[1], el[2], el[3]);
|
|
|
|
i4.Sort();
|
|
|
|
numonpoint[i4.I1()]++;
|
|
|
|
numonpoint[i4.I2()]++;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
|
|
|
numonpoint[el[j]]++;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
TABLE<ElementIndex,PointIndex::BASE> elsonpoint(numonpoint);
|
|
|
|
for (ElementIndex ei = 0; ei < ne; ei++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element & el = (*this)[ei];
|
|
|
|
if (dom == 0 || dom == el.GetIndex())
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
if (el.GetNP() == 4)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
INDEX_4 i4(el[0], el[1], el[2], el[3]);
|
|
|
|
i4.Sort();
|
|
|
|
elsonpoint.Add (i4.I1(), ei);
|
|
|
|
elsonpoint.Add (i4.I2(), ei);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
|
|
|
elsonpoint.Add (el[j], ei);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2019-10-03 23:24:21 +05:00
|
|
|
*/
|
2019-09-30 14:05:13 +05:00
|
|
|
t_table.Stop();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
NgArray<bool, 1> hasface(GetNFD());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
for (int i = 1; i <= GetNFD(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int domin = GetFaceDescriptor(i).DomainIn();
|
|
|
|
int domout = GetFaceDescriptor(i).DomainOut();
|
|
|
|
hasface[i] =
|
|
|
|
( dom == 0 && (domin != 0 || domout != 0) ) ||
|
|
|
|
( dom != 0 && (domin == dom || domout == dom) );
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
numonpoint = 0;
|
|
|
|
for (SurfaceElementIndex sii = 0; sii < nse; sii++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int ind = surfelements[sii].GetIndex();
|
|
|
|
/*
|
|
|
|
if (
|
|
|
|
GetFaceDescriptor(ind).DomainIn() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainIn())
|
|
|
|
||
|
|
|
|
GetFaceDescriptor(ind).DomainOut() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainOut())
|
|
|
|
)
|
|
|
|
*/
|
|
|
|
if (hasface[ind])
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
Element2d hel = surfelements[i];
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
numonpoint[hel[0]]++;
|
2009-04-01 03:08:17 +06:00
|
|
|
*/
|
|
|
|
const Element2d & hel = surfelements[sii];
|
|
|
|
int mini = 0;
|
|
|
|
for (int j = 1; j < hel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (hel[j] < hel[mini])
|
|
|
|
mini = j;
|
2009-04-01 03:08:17 +06:00
|
|
|
numonpoint[hel[mini]]++;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
TABLE<SurfaceElementIndex,PointIndex::BASE> selsonpoint(numonpoint);
|
|
|
|
for (SurfaceElementIndex sii = 0; sii < nse; sii++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int ind = surfelements[sii].GetIndex();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
|
|
|
if (
|
|
|
|
GetFaceDescriptor(ind).DomainIn() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainIn())
|
|
|
|
||
|
|
|
|
GetFaceDescriptor(ind).DomainOut() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainOut())
|
|
|
|
)
|
|
|
|
*/
|
|
|
|
if (hasface[ind])
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
Element2d hel = surfelements[i];
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
selsonpoint.Add (hel[0], i);
|
2009-04-01 03:08:17 +06:00
|
|
|
*/
|
|
|
|
const Element2d & hel = surfelements[sii];
|
|
|
|
int mini = 0;
|
|
|
|
for (int j = 1; j < hel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (hel[j] < hel[mini])
|
|
|
|
mini = j;
|
2009-04-01 03:08:17 +06:00
|
|
|
selsonpoint.Add (hel[mini], sii);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
// PointIndex pi;
|
|
|
|
// SurfaceElementIndex sei;
|
2017-04-12 00:06:30 +05:00
|
|
|
// Element2d hel;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-08 00:21:05 +05:00
|
|
|
struct tval { int index; PointIndex p4; };
|
2009-04-20 03:15:26 +06:00
|
|
|
openelements.SetSize(0);
|
2019-08-09 18:30:58 +05:00
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
t_pointloop.Start();
|
|
|
|
|
|
|
|
/*
|
|
|
|
INDEX_3_CLOSED_HASHTABLE<tval> faceht(100);
|
|
|
|
|
2019-08-09 18:30:58 +05:00
|
|
|
for (PointIndex pi : points.Range())
|
2009-04-20 03:15:26 +06:00
|
|
|
if (selsonpoint[pi].Size()+elsonpoint[pi].Size())
|
|
|
|
{
|
|
|
|
faceht.SetSize (2 * selsonpoint[pi].Size() + 4 * elsonpoint[pi].Size());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
for (SurfaceElementIndex sei : selsonpoint[pi])
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-09-30 14:05:13 +05:00
|
|
|
Element2d hel = SurfaceElement(sei);
|
2014-04-28 13:07:36 +06:00
|
|
|
if (hel.GetType() == TRIG6) hel.SetType(TRIG);
|
2009-04-20 03:15:26 +06:00
|
|
|
int ind = hel.GetIndex();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (GetFaceDescriptor(ind).DomainIn() &&
|
2009-04-01 03:08:17 +06:00
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainIn()) )
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
hel.NormalizeNumbering();
|
|
|
|
if (hel.PNum(1) == pi)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
2019-08-08 00:21:05 +05:00
|
|
|
tval i2;
|
|
|
|
i2.index = GetFaceDescriptor(ind).DomainIn();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel.PNum(4);
|
2009-04-20 03:15:26 +06:00
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (GetFaceDescriptor(ind).DomainOut() &&
|
2009-04-01 03:08:17 +06:00
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainOut()) )
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
if (hel.PNum(1) == pi)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
2019-08-08 00:21:05 +05:00
|
|
|
tval i2;
|
|
|
|
i2.index = GetFaceDescriptor(ind).DomainOut();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
2019-09-30 14:05:13 +05:00
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel.PNum(4);
|
2009-04-20 03:15:26 +06:00
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
for (ElementIndex ei : elsonpoint[pi])
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-09-30 14:05:13 +05:00
|
|
|
const Element & el = VolumeElement(ei);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (dom == 0 || el.GetIndex() == dom)
|
|
|
|
{
|
|
|
|
for (int j = 1; j <= el.GetNFaces(); j++)
|
|
|
|
{
|
2017-04-13 13:40:47 +05:00
|
|
|
Element2d hel(TRIG);
|
2009-04-20 03:15:26 +06:00
|
|
|
el.GetFace (j, hel);
|
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (hel[0] == pi)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
|
|
|
|
|
|
|
if (faceht.Used (i3))
|
|
|
|
{
|
2019-08-08 00:21:05 +05:00
|
|
|
tval i2 = faceht.Get(i3);
|
|
|
|
if (i2.index == el.GetIndex())
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-08 00:21:05 +05:00
|
|
|
i2.index = PointIndex::BASE-1;
|
2009-04-20 03:15:26 +06:00
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-08 00:21:05 +05:00
|
|
|
if (i2.index == 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PrintSysError ("more elements on face");
|
|
|
|
(*testout) << "more elements on face!!!" << endl;
|
|
|
|
(*testout) << "el = " << el << endl;
|
|
|
|
(*testout) << "hel = " << hel << endl;
|
|
|
|
(*testout) << "face = " << i3 << endl;
|
|
|
|
(*testout) << "points = " << endl;
|
|
|
|
for (int jj = 1; jj <= 3; jj++)
|
|
|
|
(*testout) << "p = " << Point(i3.I(jj)) << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
2019-09-30 14:05:13 +05:00
|
|
|
|
2019-08-08 00:21:05 +05:00
|
|
|
tval i2;
|
|
|
|
i2.index = el.GetIndex();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
2019-09-30 14:05:13 +05:00
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel[3];
|
2009-04-01 03:08:17 +06:00
|
|
|
faceht.Set (i3, i2);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2019-09-30 14:05:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < faceht.Size(); i++)
|
|
|
|
if (faceht.UsedPos (i))
|
|
|
|
{
|
|
|
|
INDEX_3 i3;
|
2019-08-08 00:21:05 +05:00
|
|
|
//INDEX_2 i2;
|
|
|
|
tval i2;
|
2009-04-20 03:15:26 +06:00
|
|
|
faceht.GetData (i, i3, i2);
|
2019-08-08 00:21:05 +05:00
|
|
|
if (i2.index != PointIndex::BASE-1)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-08-08 00:21:05 +05:00
|
|
|
Element2d tri ( (i2.p4 == PointIndex::BASE-1) ? TRIG : QUAD);
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int l = 0; l < 3; l++)
|
|
|
|
tri[l] = i3.I(l+1);
|
2019-08-08 00:21:05 +05:00
|
|
|
tri.PNum(4) = i2.p4;
|
|
|
|
tri.SetIndex (i2.index);
|
2009-04-20 03:15:26 +06:00
|
|
|
openelements.Append (tri);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 14:05:13 +05:00
|
|
|
*/
|
|
|
|
|
|
|
|
size_t numtasks = ngcore::TaskManager::GetNumThreads();
|
|
|
|
Array<Array<Element2d>> thread_openelements(numtasks);
|
|
|
|
ParallelJob
|
|
|
|
( [&](TaskInfo & ti)
|
|
|
|
{
|
|
|
|
auto myrange = points.Range().Split(ti.task_nr, ti.ntasks);
|
|
|
|
INDEX_3_CLOSED_HASHTABLE<tval> faceht(100);
|
|
|
|
for (PointIndex pi : myrange)
|
|
|
|
if (selsonpoint[pi].Size()+elsonpoint[pi].Size())
|
|
|
|
{
|
|
|
|
faceht.SetSize (2 * selsonpoint[pi].Size() + 4 * elsonpoint[pi].Size());
|
|
|
|
|
|
|
|
for (SurfaceElementIndex sei : selsonpoint[pi])
|
|
|
|
{
|
|
|
|
Element2d hel = SurfaceElement(sei);
|
|
|
|
if (hel.GetType() == TRIG6) hel.SetType(TRIG);
|
|
|
|
int ind = hel.GetIndex();
|
|
|
|
|
|
|
|
if (GetFaceDescriptor(ind).DomainIn() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainIn()) )
|
|
|
|
{
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
if (hel.PNum(1) == pi)
|
|
|
|
{
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
|
|
|
tval i2;
|
|
|
|
i2.index = GetFaceDescriptor(ind).DomainIn();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel.PNum(4);
|
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (GetFaceDescriptor(ind).DomainOut() &&
|
|
|
|
(dom == 0 || dom == GetFaceDescriptor(ind).DomainOut()) )
|
|
|
|
{
|
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
if (hel.PNum(1) == pi)
|
|
|
|
{
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
|
|
|
tval i2;
|
|
|
|
i2.index = GetFaceDescriptor(ind).DomainOut();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel.PNum(4);
|
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ElementIndex ei : elsonpoint[pi])
|
|
|
|
{
|
|
|
|
const Element & el = VolumeElement(ei);
|
|
|
|
|
|
|
|
if (dom == 0 || el.GetIndex() == dom)
|
|
|
|
{
|
|
|
|
for (int j = 1; j <= el.GetNFaces(); j++)
|
|
|
|
{
|
|
|
|
Element2d hel(TRIG);
|
|
|
|
el.GetFace (j, hel);
|
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
|
|
|
|
if (hel[0] == pi)
|
|
|
|
{
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
|
|
|
|
|
|
|
if (faceht.Used (i3))
|
|
|
|
{
|
|
|
|
tval i2 = faceht.Get(i3);
|
|
|
|
if (i2.index == el.GetIndex())
|
|
|
|
{
|
|
|
|
i2.index = PointIndex::BASE-1;
|
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (i2.index == 0)
|
|
|
|
{
|
|
|
|
PrintSysError ("more elements on face");
|
|
|
|
(*testout) << "more elements on face!!!" << endl;
|
|
|
|
(*testout) << "el = " << el << endl;
|
|
|
|
(*testout) << "hel = " << hel << endl;
|
|
|
|
(*testout) << "face = " << i3 << endl;
|
|
|
|
(*testout) << "points = " << endl;
|
|
|
|
for (int jj = 1; jj <= 3; jj++)
|
|
|
|
(*testout) << "p = " << Point(i3.I(jj)) << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hel.Invert();
|
|
|
|
hel.NormalizeNumbering();
|
|
|
|
INDEX_3 i3(hel[0], hel[1], hel[2]);
|
|
|
|
|
|
|
|
tval i2;
|
|
|
|
i2.index = el.GetIndex();
|
|
|
|
i2.p4 = (hel.GetNP() == 3)
|
|
|
|
? PointIndex (PointIndex::INVALID)
|
|
|
|
: hel[3];
|
|
|
|
faceht.Set (i3, i2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < faceht.Size(); i++)
|
|
|
|
if (faceht.UsedPos (i))
|
|
|
|
{
|
|
|
|
INDEX_3 i3;
|
|
|
|
tval i2;
|
|
|
|
faceht.GetData (i, i3, i2);
|
|
|
|
if (i2.index != PointIndex::BASE-1)
|
|
|
|
{
|
|
|
|
Element2d tri ( (i2.p4 == PointIndex::BASE-1) ? TRIG : QUAD);
|
|
|
|
for (int l = 0; l < 3; l++)
|
|
|
|
tri[l] = i3.I(l+1);
|
|
|
|
tri.PNum(4) = i2.p4;
|
|
|
|
tri.SetIndex (i2.index);
|
|
|
|
thread_openelements[ti.task_nr].Append (tri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}});
|
|
|
|
|
|
|
|
for (auto & a : thread_openelements)
|
|
|
|
for (auto & el : a)
|
|
|
|
openelements.Append (el);
|
|
|
|
|
|
|
|
t_pointloop.Stop();
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cnt3 = 0;
|
2019-09-30 14:05:13 +05:00
|
|
|
for (int i = 0; i < openelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (openelements[i].GetNP() == 3)
|
|
|
|
cnt3++;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cnt4 = openelements.Size() - cnt3;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
MyStr treequad;
|
|
|
|
if (cnt4)
|
|
|
|
treequad = MyStr(" (") + MyStr(cnt3) + MyStr (" + ") +
|
|
|
|
MyStr(cnt4) + MyStr(")");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (5, openelements.Size(), treequad, " open elements");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
BuildBoundaryEdges();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= openelements.Size(); i++)
|
|
|
|
{
|
|
|
|
const Element2d & sel = openelements.Get(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (boundaryedges)
|
|
|
|
for (int j = 1; j <= sel.GetNP(); j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel.PNumMod(j);
|
|
|
|
i2.I2() = sel.PNumMod(j+1);
|
|
|
|
i2.Sort();
|
|
|
|
boundaryedges->Set (i2, 1);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 1; j <= 3; j++)
|
|
|
|
{
|
2013-04-03 02:29:05 +06:00
|
|
|
PointIndex pi = sel.PNum(j);
|
2019-08-09 18:30:58 +05:00
|
|
|
// if (pi < points.End())
|
|
|
|
if (pi < *points.Range().end())
|
2009-04-20 03:15:26 +06:00
|
|
|
points[pi].SetType (FIXEDPOINT);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment(i);
|
|
|
|
INDEX_2 i2(seg[0], seg[1]);
|
|
|
|
i2.Sort();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!boundaryedges->Used (i2))
|
|
|
|
cerr << "WARNING: no boundedge, but seg edge: " << i2 << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
boundaryedges -> Set (i2, 2);
|
|
|
|
segmentht -> Set (i2, i-1);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: HasOpenQuads () const
|
|
|
|
{
|
|
|
|
int no = GetNOpenElements();
|
|
|
|
for (int i = 0; i < no; i++)
|
|
|
|
if (openelements[i].GetNP() == 4)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: FindOpenSegments (int surfnr)
|
|
|
|
{
|
2012-10-22 19:13:57 +06:00
|
|
|
// int i, j, k;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
// new version, general elements
|
2019-09-24 13:34:36 +05:00
|
|
|
// hash index: pnum1-2, surfnr
|
|
|
|
// hash data : surfel-nr (pos) or segment nr(neg)
|
|
|
|
INDEX_3_HASHTABLE<int> faceht(4 * GetNSE()+GetNSeg()+1);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (5, "Test Opensegments");
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = LineSegment (i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (surfnr == 0 || seg.si == surfnr)
|
|
|
|
{
|
2019-09-24 13:34:36 +05:00
|
|
|
INDEX_3 key(seg[0], seg[1], seg.si);
|
|
|
|
int data = -i;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (faceht.Used (key))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
cerr << "ERROR: Segment " << seg << " already used" << endl;
|
|
|
|
(*testout) << "ERROR: Segment " << seg << " already used" << endl;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
faceht.Set (key, data);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-24 13:34:36 +05:00
|
|
|
/*
|
|
|
|
// not possible with surfnr as hash-index
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = LineSegment (i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (surfnr == 0 || seg.si == surfnr)
|
|
|
|
{
|
2009-04-03 20:39:52 +06:00
|
|
|
INDEX_2 key(seg[1], seg[0]);
|
2009-04-01 03:08:17 +06:00
|
|
|
if (!faceht.Used(key))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
cerr << "ERROR: Segment " << seg << " brother not used" << endl;
|
|
|
|
(*testout) << "ERROR: Segment " << seg << " brother not used" << endl;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2019-09-24 13:34:36 +05:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-24 13:34:36 +05:00
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
// bool buggy = false;
|
|
|
|
// ofstream bout("buggy.out");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & el = SurfaceElement(i);
|
|
|
|
if (el.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (surfnr == 0 || el.GetIndex() == surfnr)
|
|
|
|
{
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int j = 1; j <= el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-09-24 13:34:36 +05:00
|
|
|
INDEX_3 seg (el.PNumMod(j), el.PNumMod(j+1), el.GetIndex());
|
|
|
|
int data;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-12-12 15:47:46 +05:00
|
|
|
if (seg.I1() < PointIndex::BASE || seg.I2() < PointIndex::BASE)
|
2009-04-01 03:08:17 +06:00
|
|
|
cerr << "seg = " << seg << endl;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (faceht.Used(seg))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-09-24 13:34:36 +05:00
|
|
|
faceht.Set (seg, 0);
|
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
data = faceht.Get(seg);
|
2019-09-24 13:34:36 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (data.I1() == el.GetIndex())
|
|
|
|
{
|
|
|
|
data.I1() = 0;
|
|
|
|
faceht.Set (seg, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-22 19:13:57 +06:00
|
|
|
// buggy = true;
|
|
|
|
PrintWarning ("hash table si not fitting for segment: ",
|
2009-04-20 03:15:26 +06:00
|
|
|
seg.I1(), "-", seg.I2(), " other = ",
|
2019-09-24 13:34:36 +05:00
|
|
|
data.I2(), ", surfnr = ", surfnr);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2019-09-24 13:34:36 +05:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Swap (seg.I1(), seg.I2());
|
2019-09-24 13:34:36 +05:00
|
|
|
// data.I1() = el.GetIndex();
|
|
|
|
// data.I2() = i;
|
|
|
|
faceht.Set (seg, i);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
/*
|
|
|
|
if (buggy)
|
|
|
|
{
|
|
|
|
for (int i = 1; i <= GetNSeg(); i++)
|
|
|
|
bout << "seg" << i << " " << LineSegment(i) << endl;
|
|
|
|
|
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
|
|
|
bout << "sel" << i << " " << SurfaceElement(i) << " ind = "
|
|
|
|
<< SurfaceElement(i).GetIndex() << endl;
|
|
|
|
|
|
|
|
bout << "hashtable: " << endl;
|
|
|
|
for (int j = 1; j <= faceht.GetNBags(); j++)
|
|
|
|
{
|
|
|
|
bout << "bag " << j << ":" << endl;
|
|
|
|
for (int k = 1; k <= faceht.GetBagSize(j); k++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2, data;
|
|
|
|
faceht.GetData (j, k, i2, data);
|
|
|
|
bout << "key = " << i2 << ", data = " << data << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << "open segments: " << endl;
|
|
|
|
opensegments.SetSize(0);
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= faceht.GetNBags(); i++)
|
|
|
|
for (int j = 1; j <= faceht.GetBagSize(i); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-09-24 13:34:36 +05:00
|
|
|
INDEX_3 i2;
|
|
|
|
int data;
|
2009-04-20 03:15:26 +06:00
|
|
|
faceht.GetData (i, j, i2, data);
|
2019-09-24 13:34:36 +05:00
|
|
|
if (data) // surfnr
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Segment seg;
|
|
|
|
seg[0] = i2.I1();
|
|
|
|
seg[1] = i2.I2();
|
2019-09-24 13:34:36 +05:00
|
|
|
seg.si = i2.I3();
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
// find geomdata:
|
2019-09-24 13:34:36 +05:00
|
|
|
if (data > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// segment due to triangle
|
2019-09-24 13:34:36 +05:00
|
|
|
const Element2d & el = SurfaceElement (data);
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int k = 1; k <= el.GetNP(); k++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (seg[0] == el.PNum(k))
|
2009-04-01 03:08:17 +06:00
|
|
|
seg.geominfo[0] = el.GeomInfoPi(k);
|
2009-04-20 03:15:26 +06:00
|
|
|
if (seg[1] == el.PNum(k))
|
2009-04-01 03:08:17 +06:00
|
|
|
seg.geominfo[1] = el.GeomInfoPi(k);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
(*testout) << "trig seg: ";
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// segment due to line
|
2019-09-24 13:34:36 +05:00
|
|
|
const Segment & lseg = LineSegment (-data);
|
2009-04-01 03:08:17 +06:00
|
|
|
seg.geominfo[0] = lseg.geominfo[0];
|
|
|
|
seg.geominfo[1] = lseg.geominfo[1];
|
|
|
|
|
|
|
|
(*testout) << "line seg: ";
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << seg[0] << " - " << seg[1]
|
|
|
|
<< " len = " << Dist (Point(seg[0]), Point(seg[1]))
|
|
|
|
<< endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
opensegments.Append (seg);
|
|
|
|
if (seg.geominfo[0].trignum <= 0 || seg.geominfo[1].trignum <= 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << "Problem with open segment: " << seg << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
PrintMessage (3, opensegments.Size(), " open segments found");
|
|
|
|
(*testout) << opensegments.Size() << " open segments found" << endl;
|
|
|
|
|
|
|
|
/*
|
|
|
|
ptyps.SetSize (GetNP());
|
|
|
|
for (i = 1; i <= ptyps.Size(); i++)
|
|
|
|
ptyps.Elem(i) = SURFACEPOINT;
|
|
|
|
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment (i);
|
|
|
|
ptyps.Elem(seg[0]) = EDGEPOINT;
|
|
|
|
ptyps.Elem(seg[1]) = EDGEPOINT;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
for (i = 1; i <= GetNOpenSegments(); i++)
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = GetOpenSegment (i);
|
|
|
|
ptyps.Elem(seg[0]) = EDGEPOINT;
|
|
|
|
ptyps.Elem(seg[1]) = EDGEPOINT;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2019-08-10 03:21:37 +05:00
|
|
|
/*
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= points.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
points.Elem(i).SetType(SURFACEPOINT);
|
2019-08-10 03:21:37 +05:00
|
|
|
*/
|
|
|
|
for (auto & p : points)
|
|
|
|
p.SetType (SURFACEPOINT);
|
|
|
|
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= GetNSeg(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment (i);
|
|
|
|
points[seg[0]].SetType(EDGEPOINT);
|
|
|
|
points[seg[1]].SetType(EDGEPOINT);
|
|
|
|
}
|
2012-10-22 19:13:57 +06:00
|
|
|
for (int i = 1; i <= GetNOpenSegments(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = GetOpenSegment (i);
|
|
|
|
points[seg[0]].SetType (EDGEPOINT);
|
|
|
|
points[seg[1]].SetType (EDGEPOINT);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
for (i = 1; i <= openelements.Size(); i++)
|
|
|
|
{
|
|
|
|
const Element2d & sel = openelements.Get(i);
|
|
|
|
|
|
|
|
if (boundaryedges)
|
|
|
|
for (j = 1; j <= sel.GetNP(); j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2;
|
|
|
|
i2.I1() = sel.PNumMod(j);
|
|
|
|
i2.I2() = sel.PNumMod(j+1);
|
|
|
|
i2.Sort();
|
|
|
|
boundaryedges->Set (i2, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
{
|
|
|
|
int pi = sel.PNum(j);
|
|
|
|
if (pi <= ptyps.Size())
|
|
|
|
ptyps.Elem(pi) = FIXEDPOINT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Mesh :: RemoveOneLayerSurfaceElements ()
|
|
|
|
{
|
|
|
|
int np = GetNP();
|
|
|
|
|
|
|
|
FindOpenSegments();
|
2019-08-28 17:00:49 +05:00
|
|
|
NgBitArray frontpoints(np+1); // for 0- and 1-based
|
2009-04-20 03:15:26 +06:00
|
|
|
frontpoints.Clear();
|
2016-12-12 15:47:46 +05:00
|
|
|
|
|
|
|
for (int i = 1; i <= GetNOpenSegments(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = GetOpenSegment(i);
|
|
|
|
frontpoints.Set (seg[0]);
|
|
|
|
frontpoints.Set (seg[1]);
|
|
|
|
}
|
|
|
|
|
2016-12-12 15:47:46 +05:00
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-08 11:44:59 +05:00
|
|
|
Element2d & sel = surfelements[i-1];
|
2016-12-12 15:47:46 +05:00
|
|
|
bool remove = false;
|
|
|
|
for (int j = 1; j <= sel.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (frontpoints.Test(sel.PNum(j)))
|
2016-12-12 15:47:46 +05:00
|
|
|
remove = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
if (remove)
|
2016-12-12 15:47:46 +05:00
|
|
|
sel.PNum(1).Invalidate();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2016-12-12 15:47:46 +05:00
|
|
|
for (int i = surfelements.Size(); i >= 1; i--)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-08 11:44:59 +05:00
|
|
|
if (!surfelements[i-1].PNum(1).IsValid())
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-08 11:44:59 +05:00
|
|
|
surfelements[i-1] = surfelements.Last();
|
2009-04-01 03:08:17 +06:00
|
|
|
surfelements.DeleteLast();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-10-08 21:34:57 +06:00
|
|
|
RebuildSurfaceElementLists ();
|
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < facedecoding.Size(); i++)
|
|
|
|
facedecoding[i].firstelement = -1;
|
|
|
|
for (int i = surfelements.Size()-1; i >= 0; i--)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int ind = surfelements[i].GetIndex();
|
|
|
|
surfelements[i].next = facedecoding[ind-1].firstelement;
|
|
|
|
facedecoding[ind-1].firstelement = i;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-10-08 21:34:57 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
timestamp = NextTimeStamp();
|
|
|
|
// Compress();
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: FreeOpenElementsEnvironment (int layers)
|
|
|
|
{
|
|
|
|
int i, j, k;
|
|
|
|
PointIndex pi;
|
|
|
|
const int large = 9999;
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int,PointIndex::BASE> dist(GetNP());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
dist = large;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= GetNOpenElements(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & face = OpenElement(i);
|
|
|
|
for (j = 0; j < face.GetNP(); j++)
|
|
|
|
dist[face[j]] = 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (k = 1; k <= layers; k++)
|
|
|
|
for (i = 1; i <= GetNE(); i++)
|
|
|
|
{
|
|
|
|
const Element & el = VolumeElement(i);
|
|
|
|
if (el[0] == -1 || el.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int elmin = large;
|
|
|
|
for (j = 0; j < el.GetNP(); j++)
|
|
|
|
if (dist[el[j]] < elmin)
|
|
|
|
elmin = dist[el[j]];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (elmin < large)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
for (j = 0; j < el.GetNP(); j++)
|
|
|
|
if (dist[el[j]] > elmin+1)
|
|
|
|
dist[el[j]] = elmin+1;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int cntfree = 0;
|
|
|
|
for (i = 1; i <= GetNE(); i++)
|
|
|
|
{
|
|
|
|
Element & el = VolumeElement(i);
|
|
|
|
if (el[0] == -1 || el.IsDeleted()) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int elmin = large;
|
|
|
|
for (j = 0; j < el.GetNP(); j++)
|
|
|
|
if (dist[el[j]] < elmin)
|
|
|
|
elmin = dist[el[j]];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
el.flags.fixed = elmin > layers;
|
|
|
|
// eltyps.Elem(i) = (elmin <= layers) ?
|
|
|
|
// FREEELEMENT : FIXEDELEMENT;
|
|
|
|
if (elmin <= layers)
|
|
|
|
cntfree++;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (5, "free: ", cntfree, ", fixed: ", GetNE()-cntfree);
|
|
|
|
(*testout) << "free: " << cntfree << ", fixed: " << GetNE()-cntfree << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (pi = PointIndex::BASE;
|
|
|
|
pi < GetNP()+PointIndex::BASE; pi++)
|
|
|
|
{
|
|
|
|
if (dist[pi] > layers+1)
|
|
|
|
points[pi].SetType(FIXEDPOINT);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-12-02 18:23:36 +05:00
|
|
|
void Mesh :: SetLocalH (netgen::Point<3> pmin, netgen::Point<3> pmax, double grading)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2014-12-02 18:23:36 +05:00
|
|
|
using netgen::Point;
|
|
|
|
Point<3> c = Center (pmin, pmax);
|
|
|
|
double d = max3 (pmax(0)-pmin(0),
|
|
|
|
pmax(1)-pmin(1),
|
|
|
|
pmax(2)-pmin(2));
|
2009-04-20 03:15:26 +06:00
|
|
|
d /= 2;
|
2014-12-02 18:23:36 +05:00
|
|
|
Point<3> pmin2 = c - Vec<3> (d, d, d);
|
|
|
|
Point<3> pmax2 = c + Vec<3> (d, d, d);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
lochfunc = make_unique<LocalH> (pmin2, pmax2, grading, dimension);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: RestrictLocalH (const Point3d & p, double hloc)
|
|
|
|
{
|
|
|
|
if(hloc < hmin)
|
|
|
|
hloc = hmin;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//cout << "restrict h in " << p << " to " << hloc << endl;
|
|
|
|
if (!lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintWarning("RestrictLocalH called, creating mesh-size tree");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d boxmin, boxmax;
|
|
|
|
GetBox (boxmin, boxmax);
|
|
|
|
SetLocalH (boxmin, boxmax, 0.8);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
lochfunc -> SetH (p, hloc);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: RestrictLocalHLine (const Point3d & p1,
|
|
|
|
const Point3d & p2,
|
|
|
|
double hloc)
|
|
|
|
{
|
|
|
|
if(hloc < hmin)
|
|
|
|
hloc = hmin;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// cout << "restrict h along " << p1 << " - " << p2 << " to " << hloc << endl;
|
|
|
|
int i;
|
|
|
|
int steps = int (Dist (p1, p2) / hloc) + 2;
|
|
|
|
Vec3d v(p1, p2);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 0; i <= steps; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d p = p1 + (double(i)/double(steps) * v);
|
|
|
|
RestrictLocalH (p, hloc);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SetMinimalH (double h)
|
|
|
|
{
|
|
|
|
hmin = h;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SetGlobalH (double h)
|
|
|
|
{
|
|
|
|
hglob = h;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double Mesh :: MaxHDomain (int dom) const
|
|
|
|
{
|
|
|
|
if (maxhdomain.Size())
|
|
|
|
return maxhdomain.Get(dom);
|
|
|
|
else
|
|
|
|
return 1e10;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
void Mesh :: SetMaxHDomain (const NgArray<double> & mhd)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
maxhdomain.SetSize(mhd.Size());
|
|
|
|
for (int i = 1; i <= mhd.Size(); i++)
|
|
|
|
maxhdomain.Elem(i) = mhd.Get(i);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double Mesh :: GetH (const Point3d & p) const
|
|
|
|
{
|
|
|
|
double hmin = hglob;
|
|
|
|
if (lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
double hl = lochfunc->GetH (p);
|
|
|
|
if (hl < hglob)
|
|
|
|
hmin = hl;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
return hmin;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double Mesh :: GetMinH (const Point3d & pmin, const Point3d & pmax)
|
|
|
|
{
|
|
|
|
double hmin = hglob;
|
|
|
|
if (lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
double hl = lochfunc->GetMinH (pmin, pmax);
|
|
|
|
if (hl < hmin)
|
|
|
|
hmin = hl;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
return hmin;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double Mesh :: AverageH (int surfnr) const
|
|
|
|
{
|
|
|
|
int i, j, n;
|
|
|
|
double hi, hsum;
|
|
|
|
double maxh = 0, minh = 1e10;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
hsum = 0;
|
|
|
|
n = 0;
|
|
|
|
for (i = 1; i <= GetNSE(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & el = SurfaceElement(i);
|
|
|
|
if (surfnr == 0 || el.GetIndex() == surfnr)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
for (j = 1; j <= 3; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
hi = Dist (Point (el.PNumMod(j)),
|
|
|
|
Point (el.PNumMod(j+1)));
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
hsum += hi;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (hi > maxh) maxh = hi;
|
|
|
|
if (hi < minh) minh = hi;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (5, "minh = ", minh, " avh = ", (hsum/n), " maxh = ", maxh);
|
|
|
|
return (hsum / n);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
void Mesh :: CalcLocalH (double grading)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
static Timer t("Mesh::CalcLocalH"); RegionTimer reg(t);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d pmin, pmax;
|
|
|
|
GetBox (pmin, pmax);
|
2011-07-25 14:40:23 +06:00
|
|
|
// SetLocalH (pmin, pmax, mparam.grading);
|
|
|
|
SetLocalH (pmin, pmax, grading);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (3,
|
|
|
|
"CalcLocalH: ",
|
|
|
|
GetNP(), " Points ",
|
|
|
|
GetNE(), " Elements ",
|
|
|
|
GetNSE(), " Surface Elements");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < GetNSE(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & el = surfelements[i];
|
|
|
|
int j;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (el.GetNP() == 3)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
double hel = -1;
|
|
|
|
for (j = 1; j <= 3; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Point3d & p1 = points[el.PNumMod(j)];
|
|
|
|
const Point3d & p2 = points[el.PNumMod(j+1)];
|
|
|
|
|
|
|
|
/*
|
|
|
|
INDEX_2 i21(el.PNumMod(j), el.PNumMod(j+1));
|
|
|
|
INDEX_2 i22(el.PNumMod(j+1), el.PNumMod(j));
|
|
|
|
if (! identifiedpoints->Used (i21) &&
|
|
|
|
! identifiedpoints->Used (i22) )
|
|
|
|
*/
|
|
|
|
if (!ident -> UsedSymmetric (el.PNumMod(j),
|
|
|
|
el.PNumMod(j+1)))
|
|
|
|
{
|
|
|
|
double hedge = Dist (p1, p2);
|
|
|
|
if (hedge > hel)
|
|
|
|
hel = hedge;
|
|
|
|
// lochfunc->SetH (Center (p1, p2), 2 * Dist (p1, p2));
|
|
|
|
// (*testout) << "trigseth, p1,2 = " << el.PNumMod(j) << ", " << el.PNumMod(j+1)
|
|
|
|
// << " h = " << (2 * Dist(p1, p2)) << endl;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (hel > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Point3d & p1 = points[el.PNum(1)];
|
|
|
|
const Point3d & p2 = points[el.PNum(2)];
|
|
|
|
const Point3d & p3 = points[el.PNum(3)];
|
|
|
|
lochfunc->SetH (Center (p1, p2, p3), hel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Point3d & p1 = points[el.PNum(1)];
|
|
|
|
const Point3d & p2 = points[el.PNum(2)];
|
|
|
|
lochfunc->SetH (Center (p1, p2), 2 * Dist (p1, p2));
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Point3d & p1 = points[el.PNum(3)];
|
|
|
|
const Point3d & p2 = points[el.PNum(4)];
|
|
|
|
lochfunc->SetH (Center (p1, p2), 2 * Dist (p1, p2));
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
const Segment & seg = segments[i];
|
|
|
|
const Point3d & p1 = points[seg[0]];
|
|
|
|
const Point3d & p2 = points[seg[1]];
|
|
|
|
/*
|
|
|
|
INDEX_2 i21(seg[0], seg[1]);
|
|
|
|
INDEX_2 i22(seg[1], seg[0]);
|
|
|
|
if (identifiedpoints)
|
|
|
|
if (!identifiedpoints->Used (i21) && !identifiedpoints->Used (i22))
|
|
|
|
*/
|
|
|
|
if (!ident -> UsedSymmetric (seg[0], seg[1]))
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
lochfunc->SetH (Center (p1, p2), Dist (p1, p2));
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
cerr << "do vol" << endl;
|
|
|
|
for (i = 1; i <= GetNE(); i++)
|
|
|
|
{
|
|
|
|
const Element & el = VolumeElement(i);
|
|
|
|
if (el.GetType() == TET)
|
|
|
|
{
|
|
|
|
int j, k;
|
|
|
|
for (j = 2; j <= 4; j++)
|
|
|
|
for (k = 1; k < j; k++)
|
|
|
|
{
|
|
|
|
const Point3d & p1 = Point (el.PNum(j));
|
|
|
|
const Point3d & p2 = Point (el.PNum(k));
|
|
|
|
lochfunc->SetH (Center (p1, p2), 2 * Dist (p1, p2));
|
|
|
|
(*testout) << "set vol h to " << (2 * Dist (p1, p2)) << endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
const char * meshsizefilename =
|
|
|
|
globflags.GetStringFlag ("meshsize", NULL);
|
|
|
|
if (meshsizefilename)
|
|
|
|
{
|
|
|
|
ifstream msf(meshsizefilename);
|
|
|
|
if (msf)
|
|
|
|
{
|
|
|
|
int nmsp;
|
|
|
|
msf >> nmsp;
|
|
|
|
for (i = 1; i <= nmsp; i++)
|
|
|
|
{
|
|
|
|
Point3d pi;
|
|
|
|
double hi;
|
|
|
|
msf >> pi.X() >> pi.Y() >> pi.Z();
|
|
|
|
msf >> hi;
|
|
|
|
lochfunc->SetH (pi, hi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
|
|
|
// lochfunc -> Convexify();
|
|
|
|
// lochfunc -> PrintMemInfo (cout);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
void Mesh :: CalcLocalHFromPointDistances(double grading)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PrintMessage (3, "Calculating local h from point distances");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d pmin, pmax;
|
|
|
|
GetBox (pmin, pmax);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
// SetLocalH (pmin, pmax, mparam.grading);
|
|
|
|
SetLocalH (pmin, pmax, grading);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PointIndex i,j;
|
|
|
|
double hl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = PointIndex::BASE;
|
2009-04-01 03:08:17 +06:00
|
|
|
i < GetNP()+PointIndex::BASE; i++)
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
for(j=i+1; j<GetNP()+PointIndex::BASE; j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
const Point3d & p1 = points[i];
|
|
|
|
const Point3d & p2 = points[j];
|
|
|
|
hl = Dist(p1,p2);
|
|
|
|
RestrictLocalH(p1,hl);
|
|
|
|
RestrictLocalH(p2,hl);
|
|
|
|
//cout << "restricted h at " << p1 << " and " << p2 << " to " << hl << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
void Mesh :: CalcLocalHFromSurfaceCurvature (double grading, double elperr)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PrintMessage (3, "Calculating local h from surface curvature");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!lochfunc)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d pmin, pmax;
|
|
|
|
GetBox (pmin, pmax);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
// SetLocalH (pmin, pmax, mparam.grading);
|
|
|
|
SetLocalH (pmin, pmax, grading);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
INDEX_2_HASHTABLE<int> edges(3 * GetNP() + 2);
|
|
|
|
INDEX_2_HASHTABLE<int> bedges(GetNSeg() + 2);
|
|
|
|
int i, j;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = LineSegment(i);
|
|
|
|
INDEX_2 i2(seg[0], seg[1]);
|
|
|
|
i2.Sort();
|
|
|
|
bedges.Set (i2, 1);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= GetNSE(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = SurfaceElement(i);
|
|
|
|
if (!sel.PNum(1))
|
|
|
|
continue;
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
INDEX_2 i2(sel.PNumMod(j), sel.PNumMod(j+1));
|
|
|
|
i2.Sort();
|
|
|
|
if (bedges.Used(i2)) continue;
|
|
|
|
|
|
|
|
if (edges.Used(i2))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int other = edges.Get(i2);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & elother = SurfaceElement(other);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int pi3 = 1;
|
|
|
|
while ( (sel.PNum(pi3) == i2.I1()) ||
|
|
|
|
(sel.PNum(pi3) == i2.I2()))
|
2009-04-01 03:08:17 +06:00
|
|
|
pi3++;
|
2009-04-20 03:15:26 +06:00
|
|
|
pi3 = sel.PNum(pi3);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int pi4 = 1;
|
|
|
|
while ( (elother.PNum(pi4) == i2.I1()) ||
|
|
|
|
(elother.PNum(pi4) == i2.I2()))
|
2009-04-01 03:08:17 +06:00
|
|
|
pi4++;
|
2009-04-20 03:15:26 +06:00
|
|
|
pi4 = elother.PNum(pi4);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-08 00:21:05 +05:00
|
|
|
double rad = ComputeCylinderRadius (Point (PointIndex(i2.I1())),
|
|
|
|
Point (PointIndex(i2.I2())),
|
|
|
|
Point (PointIndex(pi3)),
|
|
|
|
Point (PointIndex(pi4)));
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-08 00:21:05 +05:00
|
|
|
RestrictLocalHLine (Point(PointIndex(i2.I1())), Point(PointIndex(i2.I2())), rad/elperr);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
|
|
|
(*testout) << "pi1,2, 3, 4 = " << i2.I1() << ", " << i2.I2() << ", " << pi3 << ", " << pi4
|
|
|
|
<< " p1 = " << Point(i2.I1())
|
|
|
|
<< ", p2 = " << Point(i2.I2())
|
|
|
|
// << ", p3 = " << Point(pi3)
|
|
|
|
// << ", p4 = " << Point(pi4)
|
|
|
|
<< ", rad = " << rad << endl;
|
|
|
|
*/
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
edges.Set (i2, i);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// Restrict h due to line segments
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = LineSegment(i);
|
|
|
|
const Point3d & p1 = Point(seg[0]);
|
|
|
|
const Point3d & p2 = Point(seg[1]);
|
|
|
|
RestrictLocalH (Center (p1, p2), Dist (p1, p2));
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int i, j;
|
|
|
|
int np = GetNP();
|
|
|
|
int nseg = GetNSeg();
|
|
|
|
int nse = GetNSE();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<Vec3d> normals(np);
|
2019-08-28 17:00:49 +05:00
|
|
|
NgBitArray linepoint(np);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
linepoint.Clear();
|
|
|
|
for (i = 1; i <= nseg; i++)
|
|
|
|
{
|
|
|
|
linepoint.Set (LineSegment(i)[0]);
|
|
|
|
linepoint.Set (LineSegment(i)[1]);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= np; i++)
|
|
|
|
normals.Elem(i) = Vec3d(0,0,0);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= nse; i++)
|
|
|
|
{
|
|
|
|
Element2d & el = SurfaceElement(i);
|
|
|
|
Vec3d nf = Cross (Vec3d (Point (el.PNum(1)), Point(el.PNum(2))),
|
|
|
|
Vec3d (Point (el.PNum(1)), Point(el.PNum(3))));
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
normals.Elem(el.PNum(j)) += nf;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= np; i++)
|
|
|
|
normals.Elem(i) /= (1e-12 + normals.Elem(i).Length());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= nse; i++)
|
|
|
|
{
|
|
|
|
Element2d & el = SurfaceElement(i);
|
|
|
|
Vec3d nf = Cross (Vec3d (Point (el.PNum(1)), Point(el.PNum(2))),
|
|
|
|
Vec3d (Point (el.PNum(1)), Point(el.PNum(3))));
|
|
|
|
nf /= nf.Length();
|
|
|
|
Point3d c = Center (Point(el.PNum(1)),
|
|
|
|
Point(el.PNum(2)),
|
|
|
|
Point(el.PNum(3)));
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
{
|
|
|
|
if (!linepoint.Test (el.PNum(j)))
|
|
|
|
{
|
|
|
|
double dist = Dist (c, Point(el.PNum(j)));
|
|
|
|
double dn = (nf - normals.Get(el.PNum(j))).Length();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
RestrictLocalH (Point(el.PNum(j)), dist / (dn+1e-12) /elperr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: RestrictLocalH (resthtype rht, int nr, double loch)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
switch (rht)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
|
|
|
case RESTRICTH_FACE:
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (i = 1; i <= GetNSE(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = SurfaceElement(i);
|
|
|
|
if (sel.GetIndex() == nr)
|
|
|
|
RestrictLocalH (RESTRICTH_SURFACEELEMENT, i, loch);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
break;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
case RESTRICTH_EDGE:
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (i = 1; i <= GetNSeg(); i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Segment & seg = LineSegment(i);
|
|
|
|
if (seg.edgenr == nr)
|
|
|
|
RestrictLocalH (RESTRICTH_SEGMENT, i, loch);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
break;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
case RESTRICTH_POINT:
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
RestrictLocalH (Point (nr), loch);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
case RESTRICTH_SURFACEELEMENT:
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & sel = SurfaceElement(nr);
|
|
|
|
Point3d p = Center (Point(sel.PNum(1)),
|
|
|
|
Point(sel.PNum(2)),
|
|
|
|
Point(sel.PNum(3)));
|
|
|
|
RestrictLocalH (p, loch);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
case RESTRICTH_SEGMENT:
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Segment & seg = LineSegment(nr);
|
|
|
|
RestrictLocalHLine (Point (seg[0]), Point(seg[1]), loch);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2014-08-31 18:12:31 +06:00
|
|
|
void Mesh :: LoadLocalMeshSize (const string & meshsizefilename)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
// Philippose - 10/03/2009
|
|
|
|
// Improve error checking when loading and reading
|
|
|
|
// the local mesh size file
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2014-08-31 18:12:31 +06:00
|
|
|
if (meshsizefilename.empty()) return;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2014-08-31 18:12:31 +06:00
|
|
|
ifstream msf(meshsizefilename.c_str());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// Philippose - 09/03/2009
|
|
|
|
// Adding print message information in case the specified
|
|
|
|
// does not exist, or does not load successfully due to
|
|
|
|
// other reasons such as access rights, etc...
|
|
|
|
if (!msf)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage(3, "Error loading mesh size file: ", meshsizefilename, "....","Skipping!");
|
|
|
|
return;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (3, "Load local mesh-size file: ", meshsizefilename);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int nmsp = 0;
|
|
|
|
int nmsl = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
msf >> nmsp;
|
2010-02-23 00:28:00 +05:00
|
|
|
if(!msf.good())
|
|
|
|
throw NgException ("Mesh-size file error: No points found\n");
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(nmsp > 0)
|
2010-02-23 00:28:00 +05:00
|
|
|
PrintMessage (4, "Number of mesh-size restriction points: ", nmsp);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < nmsp; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d pi;
|
|
|
|
double hi;
|
|
|
|
msf >> pi.X() >> pi.Y() >> pi.Z();
|
|
|
|
msf >> hi;
|
|
|
|
if (!msf.good())
|
|
|
|
throw NgException ("Mesh-size file error: Number of points don't match specified list size\n");
|
|
|
|
RestrictLocalH (pi, hi);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2010-02-23 00:28:00 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
msf >> nmsl;
|
2010-02-23 00:28:00 +05:00
|
|
|
if(!msf.good())
|
|
|
|
throw NgException ("Mesh-size file error: No line definitions found\n");
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(nmsl > 0)
|
2010-02-23 00:28:00 +05:00
|
|
|
PrintMessage (4, "Number of mesh-size restriction lines: ", nmsl);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < nmsl; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d p1, p2;
|
|
|
|
double hi;
|
|
|
|
msf >> p1.X() >> p1.Y() >> p1.Z();
|
|
|
|
msf >> p2.X() >> p2.Y() >> p2.Z();
|
|
|
|
msf >> hi;
|
|
|
|
if (!msf.good())
|
|
|
|
throw NgException ("Mesh-size file error: Number of line definitions don't match specified list size\n");
|
|
|
|
RestrictLocalHLine (p1, p2, hi);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
msf.close();
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: GetBox (Point3d & pmin, Point3d & pmax, int dom) const
|
|
|
|
{
|
|
|
|
if (points.Size() == 0)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = pmax = Point3d(0,0,0);
|
|
|
|
return;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (dom <= 0)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = Point3d (1e10, 1e10, 1e10);
|
|
|
|
pmax = Point3d (-1e10, -1e10, -1e10);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 18:30:58 +05:00
|
|
|
// for (PointIndex pi = points.Begin(); pi < points.End(); pi++)
|
|
|
|
for (PointIndex pi : points.Range())
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
pmin.SetToMin ( (*this) [pi] );
|
|
|
|
pmax.SetToMax ( (*this) [pi] );
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int j, nse = GetNSE();
|
|
|
|
SurfaceElementIndex sei;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = Point3d (1e10, 1e10, 1e10);
|
|
|
|
pmax = Point3d (-1e10, -1e10, -1e10);
|
|
|
|
for (sei = 0; sei < nse; sei++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
const Element2d & el = (*this)[sei];
|
|
|
|
if (el.IsDeleted() ) continue;
|
|
|
|
|
|
|
|
if (dom == -1 || el.GetIndex() == dom)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
{
|
|
|
|
pmin.SetToMin ( (*this) [el[j]] );
|
|
|
|
pmax.SetToMax ( (*this) [el[j]] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (pmin.X() > 0.5e10)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = pmax = Point3d(0,0,0);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: GetBox (Point3d & pmin, Point3d & pmax, POINTTYPE ptyp) const
|
|
|
|
{
|
|
|
|
if (points.Size() == 0)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = pmax = Point3d(0,0,0);
|
|
|
|
return;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
pmin = Point3d (1e10, 1e10, 1e10);
|
|
|
|
pmax = Point3d (-1e10, -1e10, -1e10);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-09 18:30:58 +05:00
|
|
|
// for (PointIndex pi = points.Begin(); pi < points.End(); pi++)
|
|
|
|
for (PointIndex pi : points.Range())
|
2009-04-20 03:15:26 +06:00
|
|
|
if (points[pi].Type() <= ptyp)
|
|
|
|
{
|
|
|
|
pmin.SetToMin ( (*this) [pi] );
|
|
|
|
pmax.SetToMax ( (*this) [pi] );
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-07-25 14:40:23 +06:00
|
|
|
double Mesh :: ElementError (int eli, const MeshingParameters & mp) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-08-09 03:23:12 +05:00
|
|
|
const Element & el = volelements[eli-1];
|
2019-08-10 03:21:37 +05:00
|
|
|
return CalcTetBadness (points[el[0]], points[el[1]],
|
|
|
|
points[el[2]], points[el[3]], -1, mp);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: AddLockedPoint (PointIndex pi)
|
|
|
|
{
|
|
|
|
lockedpoints.Append (pi);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: ClearLockedPoints ()
|
|
|
|
{
|
|
|
|
lockedpoints.SetSize (0);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Compress ()
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
static Timer t("Mesh::Compress"); RegionTimer reg(t);
|
2019-09-16 16:13:48 +05:00
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
2019-02-11 13:11:57 +05:00
|
|
|
|
2019-09-30 11:53:32 +05:00
|
|
|
Array<PointIndex,PointIndex> op2np(GetNP());
|
2019-08-20 20:59:36 +05:00
|
|
|
Array<bool, PointIndex> pused(GetNP());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << "volels: " << endl;
|
|
|
|
for (i = 1; i <= volelements.Size(); i++)
|
|
|
|
{
|
|
|
|
for (j = 1; j <= volelements.Get(i).GetNP(); j++)
|
|
|
|
(*testout) << volelements.Get(i).PNum(j) << " ";
|
|
|
|
(*testout) << endl;
|
|
|
|
}
|
|
|
|
(*testout) << "np: " << GetNP() << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < volelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (volelements[i][0] <= PointIndex::BASE-1 ||
|
|
|
|
volelements[i].IsDeleted())
|
|
|
|
{
|
2019-08-09 03:23:12 +05:00
|
|
|
volelements.DeleteElement(i);
|
2009-04-20 03:15:26 +06:00
|
|
|
i--;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < surfelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (surfelements[i].IsDeleted())
|
|
|
|
{
|
2019-08-08 14:03:19 +05:00
|
|
|
surfelements.DeleteElement(i);
|
2009-04-20 03:15:26 +06:00
|
|
|
i--;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < segments.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (segments[i][0] <= PointIndex::BASE-1)
|
|
|
|
{
|
2019-08-09 03:23:12 +05:00
|
|
|
segments.DeleteElement(i);
|
2009-04-20 03:15:26 +06:00
|
|
|
i--;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-08-09 17:31:26 +05:00
|
|
|
for(int i=0; i < segments.Size(); i++)
|
|
|
|
if(segments[i].edgenr < 0)
|
2019-08-09 03:23:12 +05:00
|
|
|
segments.DeleteElement(i--);
|
2017-08-09 17:31:26 +05:00
|
|
|
|
2019-08-20 20:59:36 +05:00
|
|
|
pused = false;
|
2019-09-30 11:53:32 +05:00
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < volelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element & el = volelements[i];
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2019-08-20 20:59:36 +05:00
|
|
|
pused[el[j]] = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2019-09-30 11:53:32 +05:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
for (const Element & el : volelements)
|
|
|
|
for (PointIndex pi : el.PNums())
|
|
|
|
pused[pi] = true;
|
|
|
|
*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 11:53:32 +05:00
|
|
|
ParallelForRange
|
|
|
|
(volelements.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (const Element & el : volelements.Range(myrange))
|
|
|
|
for (PointIndex pi : el.PNums())
|
|
|
|
pused[pi] = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < surfelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & el = surfelements[i];
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2019-08-20 20:59:36 +05:00
|
|
|
pused[el[j]] = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2019-09-30 11:53:32 +05:00
|
|
|
*/
|
|
|
|
ParallelForRange
|
|
|
|
(surfelements.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (const Element2d & el : surfelements.Range(myrange))
|
|
|
|
for (PointIndex pi : el.PNums())
|
|
|
|
pused[pi] = true;
|
|
|
|
});
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < segments.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Segment & seg = segments[i];
|
2019-06-24 22:29:38 +05:00
|
|
|
for (int j = 0; j < seg.GetNP(); j++)
|
2019-08-20 20:59:36 +05:00
|
|
|
pused[seg[j]] = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < openelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & el = openelements[i];
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2019-08-20 20:59:36 +05:00
|
|
|
pused[el[j]] = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < lockedpoints.Size(); i++)
|
2019-08-20 20:59:36 +05:00
|
|
|
pused[lockedpoints[i]] = true;
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2017-12-05 02:32:47 +05:00
|
|
|
// compress points doesn't work for identified points !
|
2009-04-20 03:15:26 +06:00
|
|
|
if (identifiedpoints)
|
|
|
|
{
|
|
|
|
for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
|
|
|
if (identifiedpoints->GetBagSize(i))
|
|
|
|
{
|
|
|
|
pused.Set ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
// pused.Set();
|
|
|
|
|
2019-08-09 18:30:58 +05:00
|
|
|
|
2019-09-30 11:53:32 +05:00
|
|
|
{
|
|
|
|
Array<MeshPoint> hpoints;
|
|
|
|
int npi = PointIndex::BASE;
|
|
|
|
for (PointIndex pi : points.Range())
|
|
|
|
if (pused[pi])
|
|
|
|
{
|
|
|
|
op2np[pi] = npi;
|
|
|
|
npi++;
|
|
|
|
hpoints.Append (points[pi]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
op2np[pi].Invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
points.SetSize(0);
|
|
|
|
for (int i = 0; i < hpoints.Size(); i++)
|
|
|
|
points.Append (hpoints[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 1; i <= volelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element & el = VolumeElement(i);
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
el[j] = op2np[el[j]];
|
|
|
|
}
|
2019-09-30 11:53:32 +05:00
|
|
|
*/
|
|
|
|
ParallelForRange
|
|
|
|
(volelements.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (Element & el : volelements.Range(myrange))
|
|
|
|
for (PointIndex & pi : el.PNums())
|
|
|
|
pi = op2np[pi];
|
|
|
|
});
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 11:53:32 +05:00
|
|
|
/*
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 1; i <= surfelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element2d & el = SurfaceElement(i);
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
el[j] = op2np[el[j]];
|
|
|
|
}
|
2019-09-30 11:53:32 +05:00
|
|
|
*/
|
|
|
|
ParallelForRange
|
|
|
|
(surfelements.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (Element2d & el : surfelements.Range(myrange))
|
|
|
|
for (PointIndex & pi : el.PNums())
|
|
|
|
pi = op2np[pi];
|
|
|
|
});
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 11:53:32 +05:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < segments.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Segment & seg = segments[i];
|
2019-06-24 22:29:38 +05:00
|
|
|
for (int j = 0; j < seg.GetNP(); j++)
|
|
|
|
seg[j] = op2np[seg[j]];
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 1; i <= openelements.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element2d & el = openelements.Elem(i);
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
el[j] = op2np[el[j]];
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
for (int i = 0; i < lockedpoints.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
lockedpoints[i] = op2np[lockedpoints[i]];
|
2019-02-11 13:11:57 +05:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < facedecoding.Size(); i++)
|
|
|
|
facedecoding[i].firstelement = -1;
|
|
|
|
for (int i = surfelements.Size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int ind = surfelements[i].GetIndex();
|
|
|
|
surfelements[i].next = facedecoding[ind-1].firstelement;
|
|
|
|
facedecoding[ind-1].firstelement = i;
|
|
|
|
}
|
2019-02-11 13:11:57 +05:00
|
|
|
*/
|
|
|
|
RebuildSurfaceElementLists ();
|
2009-04-20 03:15:26 +06:00
|
|
|
CalcSurfacesOfNode();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// FindOpenElements();
|
|
|
|
timestamp = NextTimeStamp();
|
2019-09-16 16:13:48 +05:00
|
|
|
lock.UnLock();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-05-13 15:06:12 +05:00
|
|
|
void Mesh :: OrderElements()
|
|
|
|
{
|
|
|
|
for (auto & el : surfelements)
|
|
|
|
{
|
|
|
|
if (el.GetType() == TRIG)
|
|
|
|
while (el[0] > el[1] || el[0] > el[2])
|
|
|
|
{ // rotate element
|
|
|
|
auto hp = el[0];
|
|
|
|
el[0] = el[1];
|
|
|
|
el[1] = el[2];
|
|
|
|
el[2] = hp;
|
|
|
|
auto hgi = el.GeomInfoPi(1);
|
|
|
|
el.GeomInfoPi(1) = el.GeomInfoPi(2);
|
|
|
|
el.GeomInfoPi(2) = el.GeomInfoPi(3);
|
|
|
|
el.GeomInfoPi(3) = hgi;
|
|
|
|
}
|
|
|
|
}
|
2016-05-15 22:18:27 +05:00
|
|
|
|
|
|
|
for (auto & el : volelements)
|
|
|
|
if (el.GetType() == TET)
|
|
|
|
{
|
|
|
|
// lowest index first ...
|
|
|
|
int mini = 0;
|
|
|
|
for (int i = 1; i < 4; i++)
|
|
|
|
if (el[i] < el[mini]) mini = i;
|
|
|
|
if (mini != 0)
|
|
|
|
{ // swap 0 with mini, and the other two ...
|
|
|
|
int i3 = -1, i4 = -1;
|
|
|
|
for (int i = 1; i < 4; i++)
|
|
|
|
if (i != mini)
|
|
|
|
{
|
|
|
|
i4 = i3;
|
|
|
|
i3 = i;
|
|
|
|
}
|
|
|
|
swap (el[0], el[mini]);
|
|
|
|
swap (el[i3], el[i4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (el[1] > el[2] || el[1] > el[3])
|
|
|
|
{ // rotate element to move second index to second position
|
|
|
|
auto hp = el[1];
|
|
|
|
el[1] = el[2];
|
|
|
|
el[2] = el[3];
|
|
|
|
el[3] = hp;
|
|
|
|
}
|
|
|
|
}
|
2016-05-13 15:06:12 +05:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int Mesh :: CheckConsistentBoundary () const
|
|
|
|
{
|
|
|
|
int nf = GetNOpenElements();
|
|
|
|
INDEX_2_HASHTABLE<int> edges(nf+2);
|
|
|
|
INDEX_2 i2, i2s, edge;
|
|
|
|
int err = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= nf; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & sel = OpenElement(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 1; j <= sel.GetNP(); j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
i2.I1() = sel.PNumMod(j);
|
|
|
|
i2.I2() = sel.PNumMod(j+1);
|
|
|
|
|
|
|
|
int sign = (i2.I2() > i2.I1()) ? 1 : -1;
|
|
|
|
i2.Sort();
|
|
|
|
if (!edges.Used (i2))
|
2009-04-20 03:15:26 +06:00
|
|
|
edges.Set (i2, 0);
|
2009-04-01 03:08:17 +06:00
|
|
|
edges.Set (i2, edges.Get(i2) + sign);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= edges.GetNBags(); i++)
|
|
|
|
for (int j = 1; j <= edges.GetBagSize(i); j++)
|
|
|
|
{
|
|
|
|
int cnt = 0;
|
|
|
|
edges.GetData (i, j, i2, cnt);
|
|
|
|
if (cnt)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintError ("Edge ", i2.I1() , " - ", i2.I2(), " multiple times in surface mesh");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << "Edge " << i2 << " multiple times in surface mesh" << endl;
|
|
|
|
i2s = i2;
|
|
|
|
i2s.Sort();
|
|
|
|
for (int k = 1; k <= nf; k++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
const Element2d & sel = OpenElement(k);
|
|
|
|
for (int l = 1; l <= sel.GetNP(); l++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
edge.I1() = sel.PNumMod(l);
|
|
|
|
edge.I2() = sel.PNumMod(l+1);
|
|
|
|
edge.Sort();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (edge == i2s)
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << "edge of element " << sel << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
err = 2;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return err;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int Mesh :: CheckOverlappingBoundary ()
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
static Timer t("Mesh::CheckOverlappingBoundary"); RegionTimer reg(t);
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Point3d pmin, pmax;
|
|
|
|
GetBox (pmin, pmax);
|
2019-10-03 02:39:25 +05:00
|
|
|
BoxTree<3, SurfaceElementIndex> setree(pmin, pmax);
|
|
|
|
// NgArray<SurfaceElementIndex> inters;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool overlap = 0;
|
|
|
|
bool incons_layers = 0;
|
2019-10-03 02:39:25 +05:00
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
for (Element2d & el : SurfaceElements())
|
|
|
|
el.badel = false;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-03 02:39:25 +05:00
|
|
|
for (SurfaceElementIndex sei : Range(SurfaceElements()))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-10-03 02:39:25 +05:00
|
|
|
const Element2d & tri = SurfaceElement(sei);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-03 02:39:25 +05:00
|
|
|
Box<3> box(Box<3>::EMPTY_BOX);
|
|
|
|
for (PointIndex pi : tri.PNums())
|
|
|
|
box.Add (Point(pi));
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-03 02:39:25 +05:00
|
|
|
box.Increase(1e-3*box.Diam());
|
|
|
|
setree.Insert (box, sei);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2019-10-03 02:39:25 +05:00
|
|
|
std::mutex m;
|
|
|
|
// for (SurfaceElementIndex sei : Range(SurfaceElements()))
|
|
|
|
ParallelForRange
|
|
|
|
(Range(SurfaceElements()), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (SurfaceElementIndex sei : myrange)
|
|
|
|
{
|
|
|
|
const Element2d & tri = SurfaceElement(sei);
|
|
|
|
|
|
|
|
Box<3> box(Box<3>::EMPTY_BOX);
|
|
|
|
for (PointIndex pi : tri.PNums())
|
|
|
|
box.Add (Point(pi));
|
|
|
|
|
|
|
|
setree.GetFirstIntersecting
|
|
|
|
(box.PMin(), box.PMax(),
|
|
|
|
[&] (SurfaceElementIndex sej)
|
|
|
|
{
|
|
|
|
const Element2d & tri2 = SurfaceElement(sej);
|
|
|
|
|
|
|
|
if ( (*this)[tri[0]].GetLayer() != (*this)[tri2[0]].GetLayer())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( (*this)[tri[0]].GetLayer() != (*this)[tri[1]].GetLayer() ||
|
|
|
|
(*this)[tri[0]].GetLayer() != (*this)[tri[2]].GetLayer())
|
|
|
|
{
|
|
|
|
incons_layers = 1;
|
|
|
|
cout << "inconsistent layers in triangle" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
const netgen::Point<3> *trip1[3], *trip2[3];
|
|
|
|
for (int k = 0; k < 3; k++)
|
|
|
|
{
|
|
|
|
trip1[k] = &Point (tri[k]);
|
|
|
|
trip2[k] = &Point (tri2[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IntersectTriangleTriangle (&trip1[0], &trip2[0]))
|
|
|
|
{
|
|
|
|
overlap = 1;
|
|
|
|
lock_guard<std::mutex> guard(m);
|
|
|
|
PrintWarning ("Intersecting elements "
|
|
|
|
,int(sei), " and ", int(sej));
|
|
|
|
|
|
|
|
(*testout) << "Intersecting: " << endl;
|
|
|
|
(*testout) << "openelement " << sei << " with open element " << sej << endl;
|
|
|
|
|
|
|
|
cout << "el1 = " << tri << endl;
|
|
|
|
cout << "el2 = " << tri2 << endl;
|
|
|
|
cout << "layer1 = " << (*this)[tri[0]].GetLayer() << endl;
|
|
|
|
cout << "layer2 = " << (*this)[tri2[0]].GetLayer() << endl;
|
|
|
|
|
|
|
|
for (int k = 1; k <= 3; k++)
|
|
|
|
(*testout) << tri.PNum(k) << " ";
|
|
|
|
(*testout) << endl;
|
|
|
|
for (int k = 1; k <= 3; k++)
|
|
|
|
(*testout) << tri2.PNum(k) << " ";
|
|
|
|
(*testout) << endl;
|
|
|
|
|
|
|
|
for (int k = 0; k <= 2; k++)
|
|
|
|
(*testout) << *trip1[k] << " ";
|
|
|
|
(*testout) << endl;
|
|
|
|
for (int k = 0; k <= 2; k++)
|
|
|
|
(*testout) << *trip2[k] << " ";
|
|
|
|
(*testout) << endl;
|
|
|
|
|
|
|
|
(*testout) << "Face1 = " << GetFaceDescriptor(tri.GetIndex()) << endl;
|
|
|
|
(*testout) << "Face1 = " << GetFaceDescriptor(tri2.GetIndex()) << endl;
|
|
|
|
|
|
|
|
SurfaceElement(sei).badel = 1;
|
|
|
|
SurfaceElement(sej).badel = 1;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2009-04-20 03:15:26 +06:00
|
|
|
// bug 'fix'
|
|
|
|
if (incons_layers) overlap = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return overlap;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int Mesh :: CheckVolumeMesh () const
|
|
|
|
{
|
|
|
|
PrintMessage (3, "Checking volume mesh");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int ne = GetNE();
|
|
|
|
DenseMatrix dtrans(3,3);
|
|
|
|
int i, j;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (5, "elements: ", ne);
|
|
|
|
for (i = 1; i <= ne; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Element & el = (Element&) VolumeElement(i);
|
|
|
|
el.flags.badel = 0;
|
|
|
|
int nip = el.GetNIP();
|
|
|
|
for (j = 1; j <= nip; j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
el.GetTransformation (j, Points(), dtrans);
|
|
|
|
double det = dtrans.Det();
|
|
|
|
if (det > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
PrintError ("Element ", i , " has wrong orientation");
|
|
|
|
el.flags.badel = 1;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return 0;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-09-30 21:54:42 +05:00
|
|
|
// Search for surface trigs with same vertices ( may happen for instance with close surfaces in stl geometies )
|
2019-09-30 17:19:12 +05:00
|
|
|
int Mesh :: FindIllegalTrigs ()
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-09-30 17:19:12 +05:00
|
|
|
// Temporary table to store the vertex numbers of all triangles
|
|
|
|
INDEX_3_CLOSED_HASHTABLE<int> temp_tab(3*GetNSE() + 1);
|
|
|
|
size_t cnt = 0;
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2019-09-27 23:49:12 +05:00
|
|
|
{
|
2019-09-30 17:19:12 +05:00
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2019-09-27 23:49:12 +05:00
|
|
|
|
2019-09-30 17:19:12 +05:00
|
|
|
INDEX_3 i3(sel[0], sel[1], sel[2]);
|
|
|
|
i3.Sort();
|
|
|
|
if(temp_tab.Used(i3))
|
|
|
|
{
|
|
|
|
temp_tab.Set (i3, -1);
|
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
temp_tab.Set (i3, sei);
|
2019-09-27 23:49:12 +05:00
|
|
|
}
|
2019-09-30 17:19:12 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
illegal_trigs = make_unique<INDEX_3_CLOSED_HASHTABLE<int>> (2*cnt+1);
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
{
|
|
|
|
const Element2d & sel = surfelements[sei];
|
|
|
|
if (sel.IsDeleted()) continue;
|
2019-09-27 23:49:12 +05:00
|
|
|
|
2019-09-30 17:19:12 +05:00
|
|
|
INDEX_3 i3(sel[0], sel[1], sel[2]);
|
|
|
|
i3.Sort();
|
|
|
|
if(temp_tab.Get(i3)==-1)
|
|
|
|
illegal_trigs -> Set (i3, 1);
|
2019-09-27 23:49:12 +05:00
|
|
|
}
|
2019-09-30 17:19:12 +05:00
|
|
|
return cnt;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: LegalTrig (const Element2d & el) const
|
|
|
|
{
|
2019-09-30 21:54:42 +05:00
|
|
|
if(illegal_trigs)
|
|
|
|
{
|
|
|
|
INDEX_3 i3 (el[0], el[1], el[2]);
|
|
|
|
i3.Sort();
|
|
|
|
if(illegal_trigs->Used(i3))
|
|
|
|
return false;
|
|
|
|
}
|
2019-09-27 23:49:12 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return 1;
|
|
|
|
if ( /* hp */ 1) // needed for old, simple hp-refinement
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
// trigs with 2 or more segments are illegal
|
|
|
|
int i;
|
|
|
|
int nseg = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!segmentht)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
cerr << "no segmentht allocated" << endl;
|
|
|
|
return 0;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// Point3d cp(0.5, 0.5, 0.5);
|
|
|
|
for (i = 1; i <= 3; i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
INDEX_2 i2(el.PNumMod (i), el.PNumMod (i+1));
|
|
|
|
i2.Sort();
|
|
|
|
if (segmentht -> Used (i2))
|
2009-04-20 03:15:26 +06:00
|
|
|
nseg++;
|
|
|
|
}
|
|
|
|
if (nseg >= 2)
|
|
|
|
return 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
return 1;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-10-04 15:25:14 +05:00
|
|
|
double Mesh :: CalcTotalBad (const MeshingParameters & mp )
|
|
|
|
{
|
|
|
|
static Timer t("CalcTotalBad"); RegionTimer reg(t);
|
|
|
|
static constexpr int n_classes = 20;
|
|
|
|
|
|
|
|
double sum = 0;
|
|
|
|
|
|
|
|
tets_in_qualclass.SetSize(n_classes);
|
|
|
|
tets_in_qualclass = 0;
|
|
|
|
|
|
|
|
ParallelForRange( IntRange(volelements.Size()), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
double local_sum = 0.0;
|
|
|
|
double teterrpow = mp.opterrpow;
|
|
|
|
|
|
|
|
std::array<int,n_classes> classes_local{};
|
|
|
|
|
|
|
|
for (auto i : myrange)
|
|
|
|
{
|
|
|
|
double elbad = pow (max2(CalcBad (points, volelements[i], 0, mp),1e-10), 1/teterrpow);
|
|
|
|
|
|
|
|
int qualclass = int (n_classes / elbad + 1);
|
|
|
|
if (qualclass < 1) qualclass = 1;
|
|
|
|
if (qualclass > n_classes) qualclass = n_classes;
|
|
|
|
classes_local[qualclass-1]++;
|
|
|
|
|
|
|
|
local_sum += elbad;
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomicAdd(sum, local_sum);
|
|
|
|
|
|
|
|
for (auto i : Range(n_classes))
|
|
|
|
AsAtomic(tets_in_qualclass[i]) += classes_local[i];
|
|
|
|
});
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
///
|
|
|
|
bool Mesh :: LegalTet2 (Element & el) const
|
|
|
|
{
|
|
|
|
// static int timer1 = NgProfiler::CreateTimer ("Legaltet2");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// Test, whether 4 points have a common surface plus
|
|
|
|
// at least 4 edges at the boundary
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(!boundaryedges)
|
|
|
|
const_cast<Mesh *>(this)->BuildBoundaryEdges();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// non-tets are always legal
|
|
|
|
if (el.GetType() != TET)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
el.SetLegal (1);
|
|
|
|
return 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
POINTTYPE pointtype[4];
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
pointtype[i] = (*this)[el[i]].Type();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// element has at least 2 inner points ---> legal
|
|
|
|
int cnti = 0;
|
|
|
|
for (int j = 0; j < 4; j++)
|
|
|
|
if ( pointtype[j] == INNERPOINT)
|
|
|
|
{
|
|
|
|
cnti++;
|
|
|
|
if (cnti >= 2)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
el.SetLegal (1);
|
|
|
|
return 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// which faces are boundary faces ?
|
|
|
|
int bface[4];
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
bface[i] = surfelementht->Used (INDEX_3::Sort(el[gftetfacesa[i][0]],
|
|
|
|
el[gftetfacesa[i][1]],
|
|
|
|
el[gftetfacesa[i][2]]));
|
|
|
|
}
|
|
|
|
|
|
|
|
int bedge[4][4];
|
|
|
|
int segedge[4][4];
|
|
|
|
static const int pi3map[4][4] = { { -1, 2, 1, 1 },
|
|
|
|
{ 2, -1, 0, 0 },
|
|
|
|
{ 1, 0, -1, 0 },
|
|
|
|
{ 1, 0, 0, -1 } };
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
static const int pi4map[4][4] = { { -1, 3, 3, 2 },
|
|
|
|
{ 3, -1, 3, 2 },
|
|
|
|
{ 3, 3, -1, 1 },
|
|
|
|
{ 2, 2, 1, -1 } };
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
for (int j = 0; j < i; j++)
|
|
|
|
{
|
|
|
|
bool sege = false, be = false;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-04-11 12:01:36 +05:00
|
|
|
int pos = boundaryedges -> Position0(INDEX_2::Sort(el[i], el[j]));
|
|
|
|
if (pos != -1)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
be = true;
|
2017-04-11 12:01:36 +05:00
|
|
|
if (boundaryedges -> GetData0(pos) == 2)
|
2009-04-20 03:15:26 +06:00
|
|
|
sege = true;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
segedge[j][i] = segedge[i][j] = sege;
|
|
|
|
bedge[j][i] = bedge[i][j] = be;
|
|
|
|
}
|
|
|
|
|
|
|
|
// two boundary faces and no edge is illegal
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
for (int j = i+1; j < 4; j++)
|
|
|
|
{
|
|
|
|
if (bface[i] && bface[j])
|
|
|
|
if (!segedge[pi3map[i][j]][pi4map[i][j]])
|
|
|
|
{
|
|
|
|
// 2 boundary faces withoud edge in between
|
|
|
|
el.SetLegal (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// three boundary edges meeting in a Surface point
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
if ( pointtype[i] == SURFACEPOINT)
|
|
|
|
{
|
|
|
|
bool alledges = 1;
|
|
|
|
for (int j = 0; j < 4; j++)
|
|
|
|
if (j != i && !bedge[i][j])
|
|
|
|
{
|
|
|
|
alledges = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (alledges)
|
|
|
|
{
|
|
|
|
// cout << "tet illegal due to unmarked node" << endl;
|
|
|
|
el.SetLegal (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int fnr = 0; fnr < 4; fnr++)
|
|
|
|
if (!bface[fnr])
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
if (i != fnr)
|
|
|
|
{
|
|
|
|
int pi1 = pi3map[i][fnr];
|
|
|
|
int pi2 = pi4map[i][fnr];
|
|
|
|
|
|
|
|
if ( pointtype[i] == SURFACEPOINT)
|
|
|
|
{
|
|
|
|
// two connected edges on surface, but no face
|
|
|
|
if (bedge[i][pi1] && bedge[i][pi2])
|
|
|
|
{
|
|
|
|
el.SetLegal (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pointtype[i] == EDGEPOINT)
|
|
|
|
{
|
|
|
|
// connected surface edge and edge edge, but no face
|
|
|
|
if ( (bedge[i][pi1] && segedge[i][pi2]) ||
|
|
|
|
(bedge[i][pi2] && segedge[i][pi1]) )
|
|
|
|
{
|
|
|
|
el.SetLegal (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
el.SetLegal (1);
|
|
|
|
return 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int Mesh :: GetNDomains() const
|
|
|
|
{
|
|
|
|
int ndom = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int k = 0; k < facedecoding.Size(); k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if (facedecoding[k].DomainIn() > ndom)
|
|
|
|
ndom = facedecoding[k].DomainIn();
|
|
|
|
if (facedecoding[k].DomainOut() > ndom)
|
|
|
|
ndom = facedecoding[k].DomainOut();
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return ndom;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SurfaceMeshOrientation ()
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int nse = GetNSE();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-28 17:00:49 +05:00
|
|
|
NgBitArray used(nse);
|
2009-04-20 03:15:26 +06:00
|
|
|
used.Clear();
|
|
|
|
INDEX_2_HASHTABLE<int> edges(nse+1);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool haschanged = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & tri = SurfaceElement(1);
|
|
|
|
for (j = 1; j <= 3; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
INDEX_2 i2(tri.PNumMod(j), tri.PNumMod(j+1));
|
|
|
|
edges.Set (i2, 1);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
used.Set(1);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool unused;
|
|
|
|
do
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
bool changed;
|
|
|
|
do
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
changed = 0;
|
|
|
|
for (i = 1; i <= nse; i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!used.Test(i))
|
|
|
|
{
|
2019-08-08 11:44:59 +05:00
|
|
|
Element2d & el = surfelements[i-1];
|
2009-04-01 03:08:17 +06:00
|
|
|
int found = 0, foundrev = 0;
|
|
|
|
for (j = 1; j <= 3; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
INDEX_2 i2(el.PNumMod(j), el.PNumMod(j+1));
|
|
|
|
if (edges.Used(i2))
|
2009-04-01 03:08:17 +06:00
|
|
|
foundrev = 1;
|
2009-04-20 03:15:26 +06:00
|
|
|
swap (i2.I1(), i2.I2());
|
|
|
|
if (edges.Used(i2))
|
2009-04-01 03:08:17 +06:00
|
|
|
found = 1;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (found || foundrev)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (foundrev)
|
2009-04-01 03:08:17 +06:00
|
|
|
swap (el.PNum(2), el.PNum(3));
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
changed = 1;
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
{
|
|
|
|
INDEX_2 i2(el.PNumMod(j), el.PNumMod(j+1));
|
|
|
|
edges.Set (i2, 1);
|
|
|
|
}
|
|
|
|
used.Set (i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (changed)
|
|
|
|
haschanged = 1;
|
|
|
|
}
|
|
|
|
while (changed);
|
|
|
|
|
|
|
|
|
|
|
|
unused = 0;
|
|
|
|
for (i = 1; i <= nse; i++)
|
|
|
|
if (!used.Test(i))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
unused = 1;
|
|
|
|
const Element2d & tri = SurfaceElement(i);
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
INDEX_2 i2(tri.PNumMod(j), tri.PNumMod(j+1));
|
|
|
|
edges.Set (i2, 1);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
used.Set(i);
|
|
|
|
break;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
while (unused);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (haschanged)
|
|
|
|
timestamp = NextTimeStamp();
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: Split2Tets()
|
|
|
|
{
|
|
|
|
PrintMessage (1, "Split To Tets");
|
|
|
|
bool has_prisms = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int oldne = GetNE();
|
|
|
|
for (int i = 1; i <= oldne; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Element el = VolumeElement(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (el.GetType() == PRISM)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// prism, to 3 tets
|
|
|
|
|
|
|
|
// make minimal node to node 1
|
|
|
|
int minpi=0;
|
|
|
|
PointIndex minpnum;
|
|
|
|
minpnum = GetNP() + 1;
|
|
|
|
|
|
|
|
for (int j = 1; j <= 6; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (el.PNum(j) < minpnum)
|
|
|
|
{
|
|
|
|
minpnum = el.PNum(j);
|
|
|
|
minpi = j;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (minpi >= 4)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (int j = 1; j <= 3; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
swap (el.PNum(j), el.PNum(j+3));
|
2009-04-20 03:15:26 +06:00
|
|
|
minpi -= 3;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
while (minpi > 1)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int hi = 0;
|
|
|
|
for (int j = 0; j <= 3; j+= 3)
|
|
|
|
{
|
|
|
|
hi = el.PNum(1+j);
|
|
|
|
el.PNum(1+j) = el.PNum(2+j);
|
|
|
|
el.PNum(2+j) = el.PNum(3+j);
|
|
|
|
el.PNum(3+j) = hi;
|
|
|
|
}
|
|
|
|
minpi--;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
version 1: edge from pi2 to pi6,
|
|
|
|
version 2: edge from pi3 to pi5,
|
2009-04-01 03:08:17 +06:00
|
|
|
*/
|
|
|
|
|
|
|
|
static const int ntets[2][12] =
|
2009-04-20 03:15:26 +06:00
|
|
|
{ { 1, 4, 5, 6, 1, 2, 3, 6, 1, 2, 5, 6 },
|
|
|
|
{ 1, 4, 5, 6, 1, 2, 3, 5, 3, 1, 5, 6 } };
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
const int * min2pi;
|
|
|
|
|
|
|
|
if (min2 (el.PNum(2), el.PNum(6)) <
|
2009-04-20 03:15:26 +06:00
|
|
|
min2 (el.PNum(3), el.PNum(5)))
|
|
|
|
{
|
|
|
|
min2pi = &ntets[0][0];
|
|
|
|
// (*testout) << "version 1 ";
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
min2pi = &ntets[1][0];
|
|
|
|
// (*testout) << "version 2 ";
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
int firsttet = 1;
|
|
|
|
for (int j = 1; j <= 3; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element nel(TET);
|
|
|
|
for (int k = 1; k <= 4; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
nel.PNum(k) = el.PNum(min2pi[4 * j + k - 5]);
|
2009-04-20 03:15:26 +06:00
|
|
|
nel.SetIndex (el.GetIndex());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int legal = 1;
|
|
|
|
for (int k = 1; k <= 3; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
for (int l = k+1; l <= 4; l++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (nel.PNum(k) == nel.PNum(l))
|
|
|
|
legal = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// (*testout) << nel << " ";
|
|
|
|
if (legal)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if (firsttet)
|
|
|
|
{
|
|
|
|
VolumeElement(i) = nel;
|
|
|
|
firsttet = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AddVolumeElement(nel);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
if (firsttet) cout << "no legal";
|
|
|
|
(*testout) << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
else if (el.GetType() == HEX)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// hex to A) 2 prisms or B) to 5 tets
|
|
|
|
|
|
|
|
// make minimal node to node 1
|
|
|
|
int minpi=0;
|
|
|
|
PointIndex minpnum;
|
|
|
|
minpnum = GetNP() + 1;
|
|
|
|
|
|
|
|
for (int j = 1; j <= 8; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (el.PNum(j) < minpnum)
|
|
|
|
{
|
|
|
|
minpnum = el.PNum(j);
|
|
|
|
minpi = j;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (minpi >= 5)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
for (int j = 1; j <= 4; j++)
|
2009-04-01 03:08:17 +06:00
|
|
|
swap (el.PNum(j), el.PNum(j+4));
|
2009-04-20 03:15:26 +06:00
|
|
|
minpi -= 4;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
while (minpi > 1)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int hi = 0;
|
|
|
|
for (int j = 0; j <= 4; j+= 4)
|
|
|
|
{
|
|
|
|
hi = el.PNum(1+j);
|
|
|
|
el.PNum(1+j) = el.PNum(2+j);
|
|
|
|
el.PNum(2+j) = el.PNum(3+j);
|
|
|
|
el.PNum(3+j) = el.PNum(4+j);
|
|
|
|
el.PNum(4+j) = hi;
|
|
|
|
}
|
|
|
|
minpi--;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const int to_prisms[3][12] =
|
2009-04-20 03:15:26 +06:00
|
|
|
{ { 0, 1, 2, 4, 5, 6, 0, 2, 3, 4, 6, 7 },
|
|
|
|
{ 0, 1, 5, 3, 2, 6, 0, 5, 4, 3, 6, 7 },
|
|
|
|
{ 0, 7, 4, 1, 6, 5, 0, 3, 7, 1, 2, 6 },
|
|
|
|
};
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
const int * min2pi = 0;
|
|
|
|
if (min2 (el[4], el[6]) < min2 (el[5], el[7]))
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &to_prisms[0][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
else if (min2 (el[3], el[6]) < min2 (el[2], el[7]))
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &to_prisms[1][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
else if (min2 (el[1], el[6]) < min2 (el[2], el[5]))
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &to_prisms[2][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (min2pi)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
has_prisms = 1;
|
|
|
|
for (int j = 0; j < 2; j++)
|
|
|
|
{
|
|
|
|
Element nel(PRISM);
|
|
|
|
for (int k = 0; k < 6; k++)
|
|
|
|
nel[k] = el[min2pi[6*j + k]];
|
|
|
|
nel.SetIndex (el.GetIndex());
|
|
|
|
|
|
|
|
if (j == 0)
|
|
|
|
VolumeElement(i) = nel;
|
|
|
|
else
|
|
|
|
AddVolumeElement(nel);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
// split to 5 tets
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
static const int to_tets[20] =
|
|
|
|
{
|
|
|
|
1, 2, 0, 5,
|
|
|
|
3, 0, 2, 7,
|
|
|
|
4, 5, 7, 0,
|
|
|
|
6, 7, 5, 2,
|
|
|
|
0, 2, 7, 5
|
|
|
|
};
|
|
|
|
|
|
|
|
for (int j = 0; j < 5; j++)
|
|
|
|
{
|
|
|
|
Element nel(TET);
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
|
|
nel[k] = el[to_tets[4*j + k]];
|
|
|
|
nel.SetIndex (el.GetIndex());
|
|
|
|
|
|
|
|
if (j == 0)
|
|
|
|
VolumeElement(i) = nel;
|
|
|
|
else
|
|
|
|
AddVolumeElement(nel);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
else if (el.GetType() == PYRAMID)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// pyramid, to 2 tets
|
|
|
|
|
|
|
|
// cout << "pyramid: " << el << endl;
|
|
|
|
|
|
|
|
static const int ntets[2][8] =
|
2009-04-20 03:15:26 +06:00
|
|
|
{ { 1, 2, 3, 5, 1, 3, 4, 5 },
|
|
|
|
{ 1, 2, 4, 5, 4, 2, 3, 5 }};
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
const int * min2pi;
|
|
|
|
|
|
|
|
if (min2 (el[0], el[2]) < min2 (el[1], el[3]))
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &ntets[0][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &ntets[1][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
bool firsttet = 1;
|
|
|
|
for (int j = 0; j < 2; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element nel(TET);
|
|
|
|
for (int k = 0; k < 4; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
nel[k] = el[min2pi[4*j + k]-1];
|
2009-04-20 03:15:26 +06:00
|
|
|
nel.SetIndex (el.GetIndex());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// cout << "pyramid-tet: " << nel << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool legal = 1;
|
|
|
|
for (int k = 0; k < 3; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
for (int l = k+1; l < 4; l++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (nel[k] == nel[l])
|
|
|
|
legal = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (legal)
|
|
|
|
{
|
|
|
|
(*testout) << nel << " ";
|
|
|
|
if (firsttet)
|
|
|
|
VolumeElement(i) = nel;
|
|
|
|
else
|
|
|
|
AddVolumeElement(nel);
|
|
|
|
|
|
|
|
firsttet = 0;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
if (firsttet) cout << "no legal";
|
|
|
|
(*testout) << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int oldnse = GetNSE();
|
|
|
|
for (int i = 1; i <= oldnse; i++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
Element2d el = SurfaceElement(i);
|
|
|
|
if (el.GetNP() == 4)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << "split el: " << el << " to ";
|
|
|
|
|
|
|
|
static const int ntris[2][6] =
|
2009-04-20 03:15:26 +06:00
|
|
|
{ { 1, 2, 3, 1, 3, 4 },
|
|
|
|
{ 1, 2, 4, 4, 2, 3 }};
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
const int * min2pi;
|
|
|
|
|
|
|
|
if (min2 (el.PNum(1), el.PNum(3)) <
|
2009-04-20 03:15:26 +06:00
|
|
|
min2 (el.PNum(2), el.PNum(4)))
|
|
|
|
min2pi = &ntris[0][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
min2pi = &ntris[1][0];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
for (int j = 0; j <6; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << min2pi[j] << " ";
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
int firsttri = 1;
|
|
|
|
for (int j = 1; j <= 2; j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
Element2d nel(3);
|
|
|
|
for (int k = 1; k <= 3; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
nel.PNum(k) = el.PNum(min2pi[3 * j + k - 4]);
|
2009-04-20 03:15:26 +06:00
|
|
|
nel.SetIndex (el.GetIndex());
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int legal = 1;
|
|
|
|
for (int k = 1; k <= 2; k++)
|
2009-04-01 03:08:17 +06:00
|
|
|
for (int l = k+1; l <= 3; l++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (nel.PNum(k) == nel.PNum(l))
|
|
|
|
legal = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (legal)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << nel << " ";
|
|
|
|
if (firsttri)
|
|
|
|
{
|
|
|
|
SurfaceElement(i) = nel;
|
|
|
|
firsttri = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AddSurfaceElement(nel);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << endl;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (has_prisms)
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Split2Tets();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= GetNE(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
Element & el = VolumeElement(i);
|
|
|
|
const Point3d & p1 = Point (el.PNum(1));
|
|
|
|
const Point3d & p2 = Point (el.PNum(2));
|
|
|
|
const Point3d & p3 = Point (el.PNum(3));
|
|
|
|
const Point3d & p4 = Point (el.PNum(4));
|
|
|
|
|
|
|
|
double vol = (Vec3d (p1, p2) *
|
2009-04-20 03:15:26 +06:00
|
|
|
Cross (Vec3d (p1, p3), Vec3d(p1, p4)));
|
2009-04-01 03:08:17 +06:00
|
|
|
if (vol > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
swap (el.PNum(3), el.PNum(4));
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
UpdateTopology();
|
|
|
|
timestamp = NextTimeStamp();
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2016-05-09 18:30:14 +05:00
|
|
|
|
|
|
|
RebuildSurfaceElementLists();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: BuildElementSearchTree ()
|
|
|
|
{
|
2013-04-03 02:29:05 +06:00
|
|
|
if (elementsearchtreets == GetTimeStamp()) return;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
{
|
2016-02-22 22:43:51 +05:00
|
|
|
std::lock_guard<std::mutex> guard(buildsearchtree_mutex);
|
2013-04-03 02:29:05 +06:00
|
|
|
if (elementsearchtreets != GetTimeStamp())
|
|
|
|
{
|
|
|
|
NgLock lock(mutex);
|
|
|
|
lock.Lock();
|
|
|
|
|
|
|
|
PrintMessage (4, "Rebuild element searchtree");
|
|
|
|
|
2019-08-09 12:02:50 +05:00
|
|
|
elementsearchtree = nullptr;
|
2013-04-03 02:29:05 +06:00
|
|
|
|
|
|
|
int ne = (dimension == 2) ? GetNSE() : GetNE();
|
2019-02-11 13:11:57 +05:00
|
|
|
if (dimension == 3 && !GetNE() && GetNSE())
|
|
|
|
ne = GetNSE();
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
if (ne)
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
if (dimension == 2 || (dimension == 3 && !GetNE()) )
|
2013-04-03 02:29:05 +06:00
|
|
|
{
|
|
|
|
Box<3> box (Box<3>::EMPTY_BOX);
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < ne; sei++)
|
2019-08-10 03:21:37 +05:00
|
|
|
// box.Add (points[surfelements[sei].PNums()]);
|
|
|
|
for (auto pi : surfelements[sei].PNums())
|
|
|
|
box.Add (points[pi]);
|
2013-04-03 02:29:05 +06:00
|
|
|
|
|
|
|
box.Increase (1.01 * box.Diam());
|
2019-08-09 12:02:50 +05:00
|
|
|
elementsearchtree = make_unique<BoxTree<3>> (box);
|
2013-04-03 02:29:05 +06:00
|
|
|
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < ne; sei++)
|
|
|
|
{
|
2019-08-10 03:21:37 +05:00
|
|
|
// box.Set (points[surfelements[sei].PNums()]);
|
|
|
|
|
|
|
|
Box<3> box (Box<3>::EMPTY_BOX);
|
|
|
|
for (auto pi : surfelements[sei].PNums())
|
|
|
|
box.Add (points[pi]);
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
elementsearchtree -> Insert (box, sei+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Box<3> box (Box<3>::EMPTY_BOX);
|
|
|
|
for (ElementIndex ei = 0; ei < ne; ei++)
|
2019-08-10 03:21:37 +05:00
|
|
|
// box.Add (points[volelements[ei].PNums()]);
|
|
|
|
for (auto pi : volelements[ei].PNums())
|
|
|
|
box.Add (points[pi]);
|
2013-04-03 02:29:05 +06:00
|
|
|
|
|
|
|
box.Increase (1.01 * box.Diam());
|
2019-08-09 12:02:50 +05:00
|
|
|
elementsearchtree = make_unique<BoxTree<3>> (box);
|
2013-04-03 02:29:05 +06:00
|
|
|
|
|
|
|
for (ElementIndex ei = 0; ei < ne; ei++)
|
|
|
|
{
|
2019-08-10 03:21:37 +05:00
|
|
|
// box.Set (points[volelements[ei].PNums()]);
|
|
|
|
|
|
|
|
Box<3> box (Box<3>::EMPTY_BOX);
|
|
|
|
for (auto pi : volelements[ei].PNums())
|
|
|
|
box.Add (points[pi]);
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
elementsearchtree -> Insert (box, ei+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
elementsearchtreets = GetTimeStamp();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-05-09 15:54:08 +05:00
|
|
|
|
|
|
|
int SolveLinearSystemLS (const Vec3d & col1,
|
|
|
|
const Vec3d & col2,
|
|
|
|
const Vec3d & rhs,
|
|
|
|
Vec2d & sol)
|
|
|
|
{
|
|
|
|
double a11 = col1 * col1;
|
|
|
|
double a12 = col1 * col2;
|
|
|
|
double a22 = col2 * col2;
|
|
|
|
|
|
|
|
double det = a11 * a22 - a12 * a12;
|
|
|
|
|
|
|
|
if (det*det <= 1e-24 * a11 * a22)
|
|
|
|
{
|
|
|
|
sol = Vec2d (0, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vec2d aTrhs;
|
|
|
|
aTrhs.X() = col1*rhs;
|
|
|
|
aTrhs.Y() = col2*rhs;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-05-09 15:54:08 +05:00
|
|
|
sol.X() = ( a22 * aTrhs.X() - a12 * aTrhs.Y()) / det;
|
|
|
|
sol.Y() = (-a12 * aTrhs.X() + a11 * aTrhs.Y()) / det;
|
|
|
|
return 0;
|
|
|
|
}
|
2019-02-11 13:11:57 +05:00
|
|
|
|
|
|
|
bool ValidBarCoord(double lami[3], double eps=1e-12)
|
|
|
|
{
|
|
|
|
return (lami[0]<=1.+eps && lami[0]>=0.-eps && lami[1]<=1.+eps && lami[1]>=0.-eps && lami[2]<=1.+eps && lami[2]>=0.-eps );
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: PointContainedIn2DElement(const Point3d & p,
|
|
|
|
double lami[3],
|
|
|
|
const int element,
|
|
|
|
bool consider3D) const
|
|
|
|
{
|
2011-07-25 14:40:23 +06:00
|
|
|
Vec3d col1, col2, col3;
|
|
|
|
Vec3d rhs, sol;
|
2009-04-20 03:15:26 +06:00
|
|
|
const double eps = 1e-6;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<Element2d> loctrigs;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-11-27 23:25:25 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//SZ
|
|
|
|
if(SurfaceElement(element).GetType()==QUAD)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element2d & el = SurfaceElement(element);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const Point3d & p1 = Point(el.PNum(1));
|
|
|
|
const Point3d & p2 = Point(el.PNum(2));
|
|
|
|
const Point3d & p3 = Point(el.PNum(3));
|
2016-05-09 15:54:08 +05:00
|
|
|
const Point3d & p4 = Point(el.PNum(4));
|
2017-01-02 15:06:36 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// Coefficients of Bilinear Mapping from Ref-Elem to global Elem
|
|
|
|
// X = a + b x + c y + d x y
|
|
|
|
Vec3d a = p1;
|
|
|
|
Vec3d b = p2 - a;
|
|
|
|
Vec3d c = p4 - a;
|
2016-11-27 23:25:25 +05:00
|
|
|
Vec3d d = p3 - a - b - c;
|
2017-01-02 15:06:36 +05:00
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
/*cout << "p = " << p << endl;
|
|
|
|
cout << "p1 = " << p1 << endl;
|
|
|
|
cout << "p2 = " << p2 << endl;
|
|
|
|
cout << "p3 = " << p3 << endl;
|
|
|
|
cout << "p4 = " << p4 << endl;
|
|
|
|
|
|
|
|
cout << "a = " << a << endl;
|
|
|
|
cout << "b = " << b << endl;
|
|
|
|
cout << "c = " << c << endl;
|
|
|
|
cout << "d = " << d << endl;*/
|
|
|
|
|
|
|
|
|
|
|
|
Vec3d pa = p-a;
|
2009-04-20 03:15:26 +06:00
|
|
|
double dxb = d.X()*b.Y()-d.Y()*b.X();
|
2019-02-11 13:11:57 +05:00
|
|
|
double dxc = d.X()*c.Y()-d.Y()*c.X();
|
|
|
|
double bxc = b.X()*c.Y()-b.Y()*c.X();
|
|
|
|
double bxpa = b.X()*pa.Y()-b.Y()*pa.X();
|
|
|
|
double cxpa = c.X()*pa.Y()-c.Y()*pa.X();
|
|
|
|
double dxpa = d.X()*pa.Y()-d.Y()*pa.X();
|
|
|
|
|
|
|
|
/*cout << "dxb = " << dxb << endl;
|
|
|
|
cout << "dxc = " << dxc << endl;
|
|
|
|
cout << "bxc = " << bxc << endl;
|
|
|
|
cout << "bxpa = " << bxpa << endl;
|
|
|
|
cout << "cxpa = " << cxpa << endl;
|
|
|
|
cout << "dxpa = " << dxpa << endl;*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
P = a + b x + c y + d x y
|
|
|
|
1) P1 = a1 + b1 x + c1 y + d1 x y
|
|
|
|
2) P2 = a2 + b2 x + c2 y + d2 x y
|
|
|
|
|
|
|
|
-> det(x,d) = det(a,d) + det(b,d) x + det(c,d) y
|
|
|
|
-> x = 1/det(b,d) *( det(P-a,d)-det(c,d) y )
|
|
|
|
-> y = 1/det(c,d) *( det(P-a,d)-det(b,d) x )
|
|
|
|
|
|
|
|
-> x = (P1 - a1 - c1 y)/(b1 + d1 y)
|
|
|
|
-> det(c,d) y**2 + [det(d,P-a) + det(c,b)] y + det(b,P-a) = 0
|
|
|
|
( same if we express x = (P2 - a2 - c2 y)/(b2 + d2 y) )
|
|
|
|
|
|
|
|
-> y = (P1 - a1 - b1 x)/(c1 + d1 x)
|
|
|
|
-> det(b,d) x**2 + [det(d,P-a) + det(b,c)] x + det(c,P-a) = 0
|
|
|
|
( same if we express y = (P2 - a2 - b2 x)/(c2 + d2 x)
|
|
|
|
*/
|
|
|
|
|
|
|
|
lami[2]=0.;
|
|
|
|
double eps = 1.E-12;
|
|
|
|
double c1,c2,r;
|
|
|
|
|
|
|
|
//First check if point is "exactly" a vertex point
|
|
|
|
Vec3d d1 = p-p1;
|
|
|
|
Vec3d d2 = p-p2;
|
|
|
|
Vec3d d3 = p-p3;
|
|
|
|
Vec3d d4 = p-p4;
|
|
|
|
|
|
|
|
//cout << " d1 = " << d1 << ", d2 = " << d2 << ", d3 = " << d3 << ", d4 = " << d4 << endl;
|
|
|
|
|
|
|
|
if (d1.Length2() < sqr(eps)*d2.Length2() && d1.Length2() < sqr(eps)*d3.Length2() && d1.Length2() < sqr(eps)*d4.Length2())
|
|
|
|
{
|
|
|
|
lami[0] = lami[1] = 0.;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (d2.Length2() < sqr(eps)*d1.Length2() && d2.Length2() < sqr(eps)*d3.Length2() && d2.Length2() < sqr(eps)*d4.Length2())
|
|
|
|
{
|
|
|
|
lami[0] = 1.;
|
|
|
|
lami[1] = 0.;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (d3.Length2() < sqr(eps)*d1.Length2() && d3.Length2() < sqr(eps)*d2.Length2() && d3.Length2() < sqr(eps)*d4.Length2())
|
|
|
|
{
|
|
|
|
lami[0] = lami[1] = 1.;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (d4.Length2() < sqr(eps)*d1.Length2() && d4.Length2() < sqr(eps)*d2.Length2() && d4.Length2() < sqr(eps)*d3.Length2())
|
|
|
|
{
|
|
|
|
lami[0] = 0.;
|
|
|
|
lami[1] = 1.;
|
|
|
|
return true;
|
|
|
|
}//if d is nearly 0: solve resulting linear system
|
|
|
|
else if (d.Length2() < sqr(eps)*b.Length2() && d.Length2() < sqr(eps)*c.Length2())
|
|
|
|
{
|
|
|
|
Vec2d sol;
|
|
|
|
SolveLinearSystemLS (b, c, p-a, sol);
|
|
|
|
lami[0] = sol.X();
|
|
|
|
lami[1] = sol.Y();
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}// if dxc is nearly 0: solve resulting linear equation for y and compute x
|
|
|
|
else if (fabs(dxc) < sqr(eps))
|
|
|
|
{
|
|
|
|
lami[1] = -bxpa/(dxpa-bxc);
|
|
|
|
lami[0] = (dxpa-dxc*lami[1])/dxb;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}// if dxb is nearly 0: solve resulting linear equation for x and compute y
|
|
|
|
else if (fabs(dxb) < sqr(eps))
|
|
|
|
{
|
|
|
|
lami[0] = -cxpa/(dxpa+bxc);
|
|
|
|
lami[1] = (dxpa-dxb*lami[0])/dxc;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}//if dxb >= dxc: solve quadratic equation in y and compute x
|
|
|
|
else if (fabs(dxb) >= fabs(dxc))
|
|
|
|
{
|
|
|
|
c1 = (bxc-dxpa)/dxc;
|
|
|
|
c2 = -bxpa/dxc;
|
|
|
|
r = c1*c1/4.0-c2;
|
|
|
|
|
|
|
|
//quadratic equation has only 1 (unstable) solution
|
|
|
|
if (fabs(r) < eps) //not eps^2!
|
|
|
|
{
|
|
|
|
lami[1] = -c1/2;
|
|
|
|
lami[0] = (dxpa-dxc*lami[1])/dxb;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}
|
|
|
|
if (r < 0) return false;
|
|
|
|
|
|
|
|
lami[1] = -c1/2+sqrt(r);
|
|
|
|
lami[0] = (dxpa-dxc*lami[1])/dxb;
|
|
|
|
|
|
|
|
if (ValidBarCoord(lami, eps))
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lami[1] = -c1/2-sqrt(r);
|
|
|
|
lami[0] = (dxpa-dxc*lami[1])/dxb;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}
|
|
|
|
}//if dxc > dxb: solve quadratic equation in x and compute y
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c1 = (-bxc-dxpa)/dxb;
|
|
|
|
c2 = -cxpa/dxb;
|
|
|
|
r = c1*c1/4.0-c2;
|
|
|
|
|
|
|
|
//quadratic equation has only 1 (unstable) solution
|
|
|
|
if (fabs(r) < eps) //not eps^2!
|
|
|
|
{
|
|
|
|
lami[0] = -c1/2;
|
|
|
|
lami[1] = (dxpa-dxb*lami[0])/dxc;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}
|
|
|
|
if (r < 0) return false;
|
|
|
|
|
|
|
|
lami[0] = -c1/2+sqrt(r);
|
|
|
|
lami[1] = (dxpa-dxb*lami[0])/dxc;
|
|
|
|
|
|
|
|
if (ValidBarCoord(lami, eps))
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lami[0] = -c1/2-sqrt(r);
|
|
|
|
lami[1] = (dxpa-dxb*lami[0])/dxc;
|
|
|
|
return ValidBarCoord(lami, eps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
double dxa = d.X()*a.Y()-d.Y()*a.X();
|
2016-11-27 23:25:25 +05:00
|
|
|
double dxp = d.X()*p.Y()-d.Y()*p.X();
|
2017-01-02 15:06:36 +05:00
|
|
|
|
2016-11-27 23:25:25 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double c0,c1,c2; // ,rt;
|
2019-02-11 13:11:57 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2016-11-27 23:25:25 +05:00
|
|
|
Vec3d dp13 = p3-p1;
|
|
|
|
Vec3d dp24 = p4-p2;
|
|
|
|
double d1 = dp13.Length2();
|
|
|
|
double d2 = dp24.Length2();
|
2017-01-02 15:06:36 +05:00
|
|
|
|
|
|
|
// if(fabs(d.X()) <= eps && fabs(d.Y())<= eps)
|
2016-11-27 23:25:25 +05:00
|
|
|
//if (d.Length2() < sqr(eps))
|
|
|
|
if (d.Length2() < sqr(eps)*d1 && d.Length2() < sqr(eps)*d2)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2016-11-27 23:25:25 +05:00
|
|
|
//Solve Linear System
|
2017-01-02 15:06:36 +05:00
|
|
|
Vec2d sol;
|
2016-05-09 15:54:08 +05:00
|
|
|
SolveLinearSystemLS (b, c, p-a, sol);
|
|
|
|
lami[0] = sol.X();
|
|
|
|
lami[1] = sol.Y();
|
2017-01-02 15:06:36 +05:00
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
|
|
|
|
//lami[0]=(c.Y()*(p.X()-a.X())-c.X()*(p.Y()-a.Y()))/
|
|
|
|
//(b.X()*c.Y() -b.Y()*c.X());
|
|
|
|
//lami[1]=(-b.Y()*(p.X()-a.X())+b.X()*(p.Y()-a.Y()))/
|
|
|
|
// (b.X()*c.Y() -b.Y()*c.X());
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
2017-01-02 15:06:36 +05:00
|
|
|
if(fabs(dxb) <= eps*fabs(dxc))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2016-11-27 23:25:25 +05:00
|
|
|
lami[1] = (dxp-dxa)/dxc;
|
2017-01-02 15:06:36 +05:00
|
|
|
if(fabs(b.X()+d.X()*lami[1])>=fabs(b.Y()+d.Y()*lami[1]))
|
2009-04-20 03:15:26 +06:00
|
|
|
lami[0] = (p.X()-a.X() - c.X()*lami[1])/(b.X()+d.X()*lami[1]);
|
|
|
|
else
|
2016-11-27 23:25:25 +05:00
|
|
|
lami[0] = (p.Y()-a.Y() - c.Y()*lami[1])/(b.Y()+d.Y()*lami[1]);
|
2017-01-02 15:06:36 +05:00
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2017-01-02 15:06:36 +05:00
|
|
|
if(fabs(dxc) <= eps*fabs(dxb))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2016-11-27 23:25:25 +05:00
|
|
|
lami[0] = (dxp-dxa)/dxb;
|
2017-01-02 15:06:36 +05:00
|
|
|
if(fabs(c.X()+d.X()*lami[0])>=fabs(c.Y()+d.Y()*lami[0]))
|
2009-04-20 03:15:26 +06:00
|
|
|
lami[1] = (p.X()-a.X() - b.X()*lami[0])/(c.X()+d.X()*lami[0]);
|
|
|
|
else
|
2016-11-27 23:25:25 +05:00
|
|
|
lami[1] = (p.Y()-a.Y() - b.Y()*lami[0])/(c.Y()+d.Y()*lami[0]);
|
2017-01-02 15:06:36 +05:00
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else //Solve quadratic equation
|
|
|
|
{
|
2017-01-02 15:06:36 +05:00
|
|
|
c2 = -d.X()*dxb;
|
|
|
|
c1 = b.X()*dxc - c.X()*dxb + d.X()*(dxp-dxa);
|
|
|
|
c0 = c.X()*(dxp-dxa) + (a.X()-p.X())*dxc;
|
|
|
|
double rt = c1*c1 - 4*c2*c0;
|
|
|
|
|
|
|
|
if (rt < 0.) return false;
|
|
|
|
lami[1] = (-c1 + sqrt(rt))/2/c2;
|
|
|
|
|
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps)
|
|
|
|
{
|
|
|
|
lami[0] = (dxp - dxa -dxb*lami[1])/dxc;
|
|
|
|
|
|
|
|
if(lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
2016-11-27 23:25:25 +05:00
|
|
|
}
|
2017-01-02 15:06:36 +05:00
|
|
|
lami[1] = (-c1 - sqrt(rt))/2/c2;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-01-02 15:06:36 +05:00
|
|
|
lami[0] = (dxp - dxa -dxb*lami[1])/dxc;
|
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
c2 = d.Y()*dxb;
|
|
|
|
c1 = b.Y()*dxc - c.Y()*dxb + d.Y()*(dxp-dxa);
|
|
|
|
c0 = c.Y()*(dxp -dxa) + (a.Y()-p.Y())*dxc;
|
|
|
|
rt = c1*c1 - 4*c2*c0;
|
2016-11-27 23:25:25 +05:00
|
|
|
|
2017-01-02 15:06:36 +05:00
|
|
|
if (rt < 0.) return false;
|
|
|
|
lami[1] = (-c1 + sqrt(rt))/2/c2;
|
2016-11-27 23:25:25 +05:00
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps)
|
2017-01-02 15:06:36 +05:00
|
|
|
{
|
|
|
|
lami[0] = (dxp - dxa -dxb*lami[1])/dxc;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2017-01-02 15:06:36 +05:00
|
|
|
if(lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
lami[1] = (-c1 - sqrt(rt))/2/c2;
|
|
|
|
|
|
|
|
lami[0] = (dxp - dxa -dxb*lami[1])/dxc;
|
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
c2 = -d.X()*dxc;
|
|
|
|
c1 = -b.X()*dxc + c.X()*dxb + d.X()*(dxp-dxa);
|
|
|
|
c0 = b.X()*(dxp -dxa) + (a.X()-p.X())*dxb;
|
|
|
|
rt = c1*c1 - 4*c2*c0;
|
|
|
|
|
|
|
|
if (rt < 0.) return false;
|
|
|
|
lami[1] = (-c1 + sqrt(rt))/2/c2;
|
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps)
|
|
|
|
{
|
|
|
|
lami[0] = (dxp - dxa -dxc*lami[1])/dxb;
|
|
|
|
|
|
|
|
if(lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
lami[1] = (-c1 - sqrt(rt))/2/c2;
|
|
|
|
|
|
|
|
lami[0] = (dxp - dxa -dxc*lami[1])/dxb;
|
|
|
|
|
|
|
|
if(lami[1]<=1.+eps && lami[1]>=0.-eps && lami[0]<=1.+eps && lami[0]>=0.-eps)
|
|
|
|
return true;
|
2019-02-11 13:11:57 +05:00
|
|
|
}*/
|
2017-01-02 15:06:36 +05:00
|
|
|
|
|
|
|
|
2016-11-27 23:25:25 +05:00
|
|
|
//cout << "lam0,1 = " << lami[0] << ", " << lami[1] << endl;
|
2016-05-09 15:54:08 +05:00
|
|
|
|
2017-01-02 15:06:36 +05:00
|
|
|
/*if( lami[0] <= 1.+eps && lami[0] >= -eps && lami[1]<=1.+eps && lami[1]>=-eps)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(consider3D)
|
|
|
|
{
|
|
|
|
Vec3d n = Cross(b,c);
|
|
|
|
lami[2] = 0;
|
|
|
|
for(int i=1; i<=3; i++)
|
|
|
|
lami[2] +=(p.X(i)-a.X(i)-lami[0]*b.X(i)-lami[1]*c.X(i)) * n.X(i);
|
|
|
|
if(lami[2] >= -eps && lami[2] <= eps)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
2017-01-02 15:06:36 +05:00
|
|
|
}*/
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return false;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
// SurfaceElement(element).GetTets (loctets);
|
|
|
|
loctrigs.SetSize(1);
|
|
|
|
loctrigs.Elem(1) = SurfaceElement(element);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 1; j <= loctrigs.Size(); j++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
const Element2d & el = loctrigs.Get(j);
|
|
|
|
|
|
|
|
|
|
|
|
const Point3d & p1 = Point(el.PNum(1));
|
|
|
|
const Point3d & p2 = Point(el.PNum(2));
|
|
|
|
const Point3d & p3 = Point(el.PNum(3));
|
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
Box3d box;
|
|
|
|
box.SetPoint (p1);
|
|
|
|
box.AddPoint (p2);
|
|
|
|
box.AddPoint (p3);
|
|
|
|
box.AddPoint (p4);
|
|
|
|
if (!box.IsIn (p))
|
|
|
|
continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
*/
|
|
|
|
col1 = p2-p1;
|
|
|
|
col2 = p3-p1;
|
|
|
|
col3 = Cross(col1,col2);
|
|
|
|
//col3 = Vec3d(0, 0, 1);
|
|
|
|
rhs = p - p1;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// int retval =
|
|
|
|
SolveLinearSystem (col1, col2, col3, rhs, sol);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
//(*testout) << "retval " << retval << endl;
|
|
|
|
|
|
|
|
//(*testout) << "col1 " << col1 << " col2 " << col2 << " col3 " << col3 << " rhs " << rhs << endl;
|
|
|
|
//(*testout) << "sol " << sol << endl;
|
|
|
|
|
2019-06-24 22:29:38 +05:00
|
|
|
if (SurfaceElement(element).GetType() ==TRIG6)
|
|
|
|
{
|
|
|
|
netgen::Point<2> lam(1./3,1./3);
|
|
|
|
Vec<3> rhs;
|
|
|
|
Vec<2> deltalam;
|
|
|
|
netgen::Point<3> x;
|
|
|
|
Mat<3,2> Jac,Jact;
|
|
|
|
|
|
|
|
double delta=1;
|
|
|
|
|
|
|
|
bool retval;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
const int maxits = 30;
|
|
|
|
while(delta > 1e-16 && i<maxits)
|
|
|
|
{
|
|
|
|
curvedelems->CalcSurfaceTransformation(lam,element-1,x,Jac);
|
|
|
|
rhs = p-x;
|
|
|
|
Jac.Solve(rhs,deltalam);
|
|
|
|
|
|
|
|
lam += deltalam;
|
|
|
|
|
|
|
|
delta = deltalam.Length2();
|
|
|
|
|
|
|
|
i++;
|
|
|
|
//(*testout) << "pcie i " << i << " delta " << delta << " p " << p << " x " << x << " lam " << lam << endl;
|
|
|
|
//<< "Jac " << Jac << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(i==maxits)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sol.X() = lam(0);
|
|
|
|
sol.Y() = lam(1);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
if (sol.X() >= -eps && sol.Y() >= -eps &&
|
2009-04-20 03:15:26 +06:00
|
|
|
sol.X() + sol.Y() <= 1+eps)
|
|
|
|
{
|
|
|
|
if(!consider3D || (sol.Z() >= -eps && sol.Z() <= eps))
|
|
|
|
{
|
|
|
|
lami[0] = sol.X();
|
|
|
|
lami[1] = sol.Y();
|
|
|
|
lami[2] = sol.Z();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return false;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: PointContainedIn3DElement(const Point3d & p,
|
|
|
|
double lami[3],
|
|
|
|
const int element) const
|
|
|
|
{
|
|
|
|
//bool oldresult = PointContainedIn3DElementOld(p,lami,element);
|
|
|
|
//(*testout) << "old result: " << oldresult
|
|
|
|
// << " lam " << lami[0] << " " << lami[1] << " " << lami[2] << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//if(!curvedelems->IsElementCurved(element-1))
|
|
|
|
// return PointContainedIn3DElementOld(p,lami,element);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const double eps = 1.e-4;
|
|
|
|
const Element & el = VolumeElement(element);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
netgen::Point<3> lam = 0.0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2012-09-21 13:59:29 +06:00
|
|
|
if (el.GetType() == TET || el.GetType() == TET10)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
lam = 0.25;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else if (el.GetType() == PRISM)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
lam(0) = 0.33; lam(1) = 0.33; lam(2) = 0.5;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else if (el.GetType() == PYRAMID)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
lam(0) = 0.4; lam(1) = 0.4; lam(2) = 0.2;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else if (el.GetType() == HEX)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
lam = 0.5;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Vec<3> deltalam,rhs;
|
|
|
|
netgen::Point<3> x;
|
|
|
|
Mat<3,3> Jac,Jact;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
double delta=1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool retval;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int i = 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const int maxits = 30;
|
|
|
|
while(delta > 1e-16 && i<maxits)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
curvedelems->CalcElementTransformation(lam,element-1,x,Jac);
|
|
|
|
rhs = p-x;
|
|
|
|
Jac.Solve(rhs,deltalam);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
lam += deltalam;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
delta = deltalam.Length2();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
i++;
|
|
|
|
//(*testout) << "pcie i " << i << " delta " << delta << " p " << p << " x " << x << " lam " << lam << endl;
|
|
|
|
//<< "Jac " << Jac << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(i==maxits)
|
|
|
|
return false;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for(i=0; i<3; i++)
|
|
|
|
lami[i] = lam(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-09-21 13:59:29 +06:00
|
|
|
if (el.GetType() == TET || el.GetType() == TET10)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
retval = (lam(0) > -eps &&
|
|
|
|
lam(1) > -eps &&
|
|
|
|
lam(2) > -eps &&
|
|
|
|
lam(0) + lam(1) + lam(2) < 1+eps);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2019-02-11 13:11:57 +05:00
|
|
|
else if (el.GetType() == PRISM || el.GetType() == PRISM15)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
retval = (lam(0) > -eps &&
|
|
|
|
lam(1) > -eps &&
|
|
|
|
lam(2) > -eps &&
|
|
|
|
lam(2) < 1+eps &&
|
|
|
|
lam(0) + lam(1) < 1+eps);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2019-02-11 13:11:57 +05:00
|
|
|
else if (el.GetType() == PYRAMID || el.GetType() == PYRAMID13)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
retval = (lam(0) > -eps &&
|
|
|
|
lam(1) > -eps &&
|
|
|
|
lam(2) > -eps &&
|
|
|
|
lam(0) + lam(2) < 1+eps &&
|
|
|
|
lam(1) + lam(2) < 1+eps);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2019-02-11 13:11:57 +05:00
|
|
|
else if (el.GetType() == HEX || el.GetType() == HEX20)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
retval = (lam(0) > -eps && lam(0) < 1+eps &&
|
|
|
|
lam(1) > -eps && lam(1) < 1+eps &&
|
|
|
|
lam(2) > -eps && lam(2) < 1+eps);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
|
|
|
throw NgException("Da haun i wos vagessn");
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return retval;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool Mesh :: PointContainedIn3DElementOld(const Point3d & p,
|
|
|
|
double lami[3],
|
|
|
|
const int element) const
|
|
|
|
{
|
2011-07-25 14:40:23 +06:00
|
|
|
Vec3d col1, col2, col3;
|
|
|
|
Vec3d rhs, sol;
|
2009-04-20 03:15:26 +06:00
|
|
|
const double eps = 1.e-4;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<Element> loctets;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
VolumeElement(element).GetTets (loctets);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int j = 1; j <= loctets.Size(); j++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
const Element & el = loctets.Get(j);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
const Point3d & p1 = Point(el.PNum(1));
|
|
|
|
const Point3d & p2 = Point(el.PNum(2));
|
|
|
|
const Point3d & p3 = Point(el.PNum(3));
|
|
|
|
const Point3d & p4 = Point(el.PNum(4));
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Box3d box;
|
|
|
|
box.SetPoint (p1);
|
|
|
|
box.AddPoint (p2);
|
|
|
|
box.AddPoint (p3);
|
|
|
|
box.AddPoint (p4);
|
|
|
|
if (!box.IsIn (p))
|
|
|
|
continue;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
col1 = p2-p1;
|
|
|
|
col2 = p3-p1;
|
|
|
|
col3 = p4-p1;
|
|
|
|
rhs = p - p1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SolveLinearSystem (col1, col2, col3, rhs, sol);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (sol.X() >= -eps && sol.Y() >= -eps && sol.Z() >= -eps &&
|
2009-04-01 03:08:17 +06:00
|
|
|
sol.X() + sol.Y() + sol.Z() <= 1+eps)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<Element> loctetsloc;
|
|
|
|
NgArray<netgen::Point<3> > pointsloc;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
VolumeElement(element).GetTetsLocal (loctetsloc);
|
|
|
|
VolumeElement(element).GetNodesLocalNew (pointsloc);
|
|
|
|
|
|
|
|
const Element & le = loctetsloc.Get(j);
|
|
|
|
|
|
|
|
|
|
|
|
Point3d pp =
|
2009-04-20 03:15:26 +06:00
|
|
|
pointsloc.Get(le.PNum(1))
|
|
|
|
+ sol.X() * Vec3d (pointsloc.Get(le.PNum(1)), pointsloc.Get(le.PNum(2)))
|
|
|
|
+ sol.Y() * Vec3d (pointsloc.Get(le.PNum(1)), pointsloc.Get(le.PNum(3)))
|
|
|
|
+ sol.Z() * Vec3d (pointsloc.Get(le.PNum(1)), pointsloc.Get(le.PNum(4))) ;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
lami[0] = pp.X();
|
|
|
|
lami[1] = pp.Y();
|
|
|
|
lami[2] = pp.Z();
|
|
|
|
return true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
int Mesh :: GetElementOfPoint (const netgen::Point<3> & p,
|
2009-04-20 03:15:26 +06:00
|
|
|
double lami[3],
|
|
|
|
bool build_searchtree,
|
|
|
|
const int index,
|
|
|
|
const bool allowindex) const
|
|
|
|
{
|
|
|
|
if(index != -1)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> dummy(1);
|
2009-04-20 03:15:26 +06:00
|
|
|
dummy[0] = index;
|
|
|
|
return GetElementOfPoint(p,lami,&dummy,build_searchtree,allowindex);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
|
|
|
return GetElementOfPoint(p,lami,NULL,build_searchtree,allowindex);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
int Mesh :: GetElementOfPoint (const netgen::Point<3> & p,
|
2009-04-20 03:15:26 +06:00
|
|
|
double lami[3],
|
2019-07-09 13:39:16 +05:00
|
|
|
const NgArray<int> * const indices,
|
2009-04-20 03:15:26 +06:00
|
|
|
bool build_searchtree,
|
|
|
|
const bool allowindex) const
|
|
|
|
{
|
2019-02-05 13:02:31 +05:00
|
|
|
// const double pointtol = 1e-12;
|
|
|
|
// netgen::Point<3> pmin = p - Vec<3> (pointtol, pointtol, pointtol);
|
|
|
|
// netgen::Point<3> pmax = p + Vec<3> (pointtol, pointtol, pointtol);
|
|
|
|
|
2019-04-15 20:49:45 +05:00
|
|
|
if ( (dimension == 2 && !GetNSE()) ||
|
|
|
|
(dimension == 3 && !GetNE() && !GetNSE()) )
|
|
|
|
return -1;
|
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
if (dimension == 2 || (dimension==3 && !GetNE() && GetNSE()))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int ne;
|
2015-11-27 17:09:05 +05:00
|
|
|
int ps_startelement = 0; // disable global buffering
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(ps_startelement != 0 && ps_startelement <= GetNSE() && PointContainedIn2DElement(p,lami,ps_startelement))
|
|
|
|
return ps_startelement;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> locels;
|
2011-08-11 22:13:35 +06:00
|
|
|
if (elementsearchtree || build_searchtree)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2011-08-11 22:13:35 +06:00
|
|
|
// update if necessary:
|
2019-02-11 13:11:57 +05:00
|
|
|
const_cast<Mesh&>(*this).BuildElementSearchTree ();
|
|
|
|
// double tol = elementsearchtree->Tolerance();
|
|
|
|
// netgen::Point<3> pmin = p - Vec<3> (tol, tol, tol);
|
|
|
|
// netgen::Point<3> pmax = p + Vec<3> (tol, tol, tol);
|
|
|
|
elementsearchtree->GetIntersecting (p, p, locels);
|
2009-04-01 03:08:17 +06:00
|
|
|
ne = locels.Size();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ne = GetNSE();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= ne; i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int ii;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-08-11 22:13:35 +06:00
|
|
|
if (elementsearchtree)
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = locels.Get(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = i;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if(ii == ps_startelement) continue;
|
|
|
|
|
|
|
|
if(indices != NULL && indices->Size() > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
bool contained = indices->Contains(SurfaceElement(ii).GetIndex());
|
|
|
|
if((allowindex && !contained) || (!allowindex && contained)) continue;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if(PointContainedIn2DElement(p,lami,ii)) return ii;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
return 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
{
|
2015-08-26 16:59:58 +05:00
|
|
|
int ps_startelement = 0; // disable global buffering
|
2009-04-20 03:15:26 +06:00
|
|
|
// int i, j;
|
|
|
|
int ne;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if(ps_startelement != 0 && PointContainedIn3DElement(p,lami,ps_startelement))
|
|
|
|
return ps_startelement;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> locels;
|
2009-04-20 03:15:26 +06:00
|
|
|
if (elementsearchtree || build_searchtree)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
// update if necessary:
|
2019-02-11 13:11:57 +05:00
|
|
|
const_cast<Mesh&>(*this).BuildElementSearchTree ();
|
|
|
|
// double tol = elementsearchtree->Tolerance();
|
|
|
|
// netgen::Point<3> pmin = p - Vec<3> (tol, tol, tol);
|
|
|
|
// netgen::Point<3> pmax = p + Vec<3> (tol, tol, tol);
|
|
|
|
elementsearchtree->GetIntersecting (p, p, locels);
|
2009-04-01 03:08:17 +06:00
|
|
|
ne = locels.Size();
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ne = GetNE();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (int i = 1; i <= ne; i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int ii;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if (elementsearchtree)
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = locels.Get(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = i;
|
2009-04-01 03:08:17 +06:00
|
|
|
if(ii == ps_startelement) continue;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if(indices != NULL && indices->Size() > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
bool contained = indices->Contains(VolumeElement(ii).GetIndex());
|
|
|
|
if((allowindex && !contained) || (!allowindex && contained)) continue;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if(PointContainedIn3DElement(p,lami,ii))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
ps_startelement = ii;
|
|
|
|
return ii;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found, try uncurved variant:
|
|
|
|
for (int i = 1; i <= ne; i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
int ii;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if (elementsearchtree)
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = locels.Get(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
ii = i;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
if(indices != NULL && indices->Size() > 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
bool contained = indices->Contains(VolumeElement(ii).GetIndex());
|
|
|
|
if((allowindex && !contained) || (!allowindex && contained)) continue;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if(PointContainedIn3DElementOld(p,lami,ii))
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
ps_startelement = ii;
|
|
|
|
(*testout) << "WARNING: found element of point " << p <<" only for uncurved mesh" << endl;
|
|
|
|
return ii;
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
int Mesh :: GetSurfaceElementOfPoint (const netgen::Point<3> & p,
|
2009-04-20 03:15:26 +06:00
|
|
|
double lami[3],
|
|
|
|
bool build_searchtree,
|
|
|
|
const int index,
|
|
|
|
const bool allowindex) const
|
|
|
|
{
|
|
|
|
if(index != -1)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> dummy(1);
|
2009-04-20 03:15:26 +06:00
|
|
|
dummy[0] = index;
|
|
|
|
return GetSurfaceElementOfPoint(p,lami,&dummy,build_searchtree,allowindex);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
|
|
|
return GetSurfaceElementOfPoint(p,lami,NULL,build_searchtree,allowindex);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-03 02:29:05 +06:00
|
|
|
int Mesh :: GetSurfaceElementOfPoint (const netgen::Point<3> & p,
|
2009-04-20 03:15:26 +06:00
|
|
|
double lami[3],
|
2019-07-09 13:39:16 +05:00
|
|
|
const NgArray<int> * const indices,
|
2009-04-20 03:15:26 +06:00
|
|
|
bool build_searchtree,
|
|
|
|
const bool allowindex) const
|
|
|
|
{
|
|
|
|
if (dimension == 2)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
throw NgException("GetSurfaceElementOfPoint not yet implemented for 2D meshes");
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
double vlam[3];
|
|
|
|
int velement = GetElementOfPoint(p,vlam,NULL,build_searchtree,allowindex);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//(*testout) << "p " << p << endl;
|
|
|
|
//(*testout) << "velement " << velement << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-02-11 13:11:57 +05:00
|
|
|
if (!GetNE() && GetNSE() )
|
|
|
|
{
|
|
|
|
lami[0] = vlam[0];
|
|
|
|
lami[1] = vlam[1];
|
|
|
|
lami[2] = vlam[2];
|
|
|
|
return velement;
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> faces;
|
2017-02-25 23:48:37 +05:00
|
|
|
topology.GetElementFaces(velement,faces);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//(*testout) << "faces " << faces << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for(int i=0; i<faces.Size(); i++)
|
2017-02-25 23:48:37 +05:00
|
|
|
faces[i] = topology.GetFace2SurfaceElement(faces[i]);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
//(*testout) << "surfel " << faces << endl;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for(int i=0; i<faces.Size(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
if(faces[i] == 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if(indices && indices->Size() != 0)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(indices->Contains(SurfaceElement(faces[i]).GetIndex()) &&
|
|
|
|
PointContainedIn2DElement(p,lami,faces[i],true))
|
2009-04-01 03:08:17 +06:00
|
|
|
return faces[i];
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
else
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(PointContainedIn2DElement(p,lami,faces[i],true))
|
|
|
|
{
|
|
|
|
//(*testout) << "found point " << p << " in sel " << faces[i]
|
|
|
|
// << ", lam " << lami[0] << ", " << lami[1] << ", " << lami[2] << endl;
|
|
|
|
return faces[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> faces2;
|
2017-02-25 23:48:37 +05:00
|
|
|
topology.GetElementFaces(velement,faces2);
|
2016-05-09 15:54:08 +05:00
|
|
|
/*
|
|
|
|
cout << "no matching surf element" << endl
|
|
|
|
<< "p = " << p << endl
|
|
|
|
<< "faces-orig = " << faces2 << endl
|
|
|
|
<< "faces = " << faces << endl
|
|
|
|
<< ", vol el = " << velement
|
|
|
|
<< ", vlam = " << vlam[0] << "," << vlam[1] << "," << vlam[2] << endl;
|
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
return 0;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh::GetIntersectingVolEls(const Point3d& p1, const Point3d& p2,
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> & locels) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
elementsearchtree->GetIntersecting (p1, p2, locels);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SplitIntoParts()
|
|
|
|
{
|
|
|
|
int i, j, dom;
|
|
|
|
int ne = GetNE();
|
|
|
|
int np = GetNP();
|
|
|
|
int nse = GetNSE();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-08-28 17:00:49 +05:00
|
|
|
NgBitArray surfused(nse);
|
|
|
|
NgBitArray pused (np);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
surfused.Clear();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
dom = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
while (1)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int cntd = 1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
dom++;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
pused.Clear();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int found = 0;
|
|
|
|
for (i = 1; i <= nse; i++)
|
|
|
|
if (!surfused.Test(i))
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
SurfaceElement(i).SetIndex (dom);
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
pused.Set (SurfaceElement(i).PNum(j));
|
|
|
|
found = 1;
|
|
|
|
cntd = 1;
|
|
|
|
surfused.Set(i);
|
|
|
|
break;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!found)
|
|
|
|
break;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int change;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
change = 0;
|
|
|
|
for (i = 1; i <= nse; i++)
|
|
|
|
{
|
|
|
|
int is = 0, isnot = 0;
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
if (pused.Test(SurfaceElement(i).PNum(j)))
|
|
|
|
is = 1;
|
|
|
|
else
|
|
|
|
isnot = 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (is && isnot)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
change = 1;
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
pused.Set (SurfaceElement(i).PNum(j));
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (is)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!surfused.Test(i))
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
surfused.Set(i);
|
|
|
|
SurfaceElement(i).SetIndex (dom);
|
|
|
|
cntd++;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= ne; i++)
|
|
|
|
{
|
|
|
|
int is = 0, isnot = 0;
|
|
|
|
for (j = 1; j <= 4; j++)
|
|
|
|
if (pused.Test(VolumeElement(i).PNum(j)))
|
|
|
|
is = 1;
|
|
|
|
else
|
|
|
|
isnot = 1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (is && isnot)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
change = 1;
|
|
|
|
for (j = 1; j <= 4; j++)
|
|
|
|
pused.Set (VolumeElement(i).PNum(j));
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (is)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
VolumeElement(i).SetIndex (dom);
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while (change);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (3, "domain ", dom, " has ", cntd, " surfaceelements");
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
facedecoding.SetSize (dom);
|
|
|
|
for (i = 1; i <= dom; i++)
|
|
|
|
{
|
|
|
|
facedecoding.Elem(i).surfnr = 0;
|
|
|
|
facedecoding.Elem(i).domin = i;
|
|
|
|
facedecoding.Elem(i).domout = 0;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
|
|
|
ClearFaceDescriptors();
|
|
|
|
for (i = 1; i <= dom; i++)
|
|
|
|
AddFaceDescriptor (FaceDescriptor (0, i, 0, 0));
|
|
|
|
CalcSurfacesOfNode();
|
|
|
|
timestamp = NextTimeStamp();
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: SplitSeparatedFaces ()
|
|
|
|
{
|
|
|
|
PrintMessage (3, "SplitSeparateFaces");
|
|
|
|
int fdi;
|
|
|
|
int np = GetNP();
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-08-28 17:00:49 +05:00
|
|
|
NgBitArray usedp(np);
|
2019-08-08 11:44:59 +05:00
|
|
|
Array<SurfaceElementIndex> els_of_face;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
fdi = 1;
|
|
|
|
while (fdi <= GetNFD())
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
GetSurfaceElementsOfFace (fdi, els_of_face);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (els_of_face.Size() == 0) continue;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
SurfaceElementIndex firstel = els_of_face[0];
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
usedp.Clear();
|
|
|
|
for (int j = 1; j <= SurfaceElement(firstel).GetNP(); j++)
|
|
|
|
usedp.Set (SurfaceElement(firstel).PNum(j));
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
bool changed;
|
|
|
|
do
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
changed = false;
|
|
|
|
|
|
|
|
for (int i = 0; i < els_of_face.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
const Element2d & el = SurfaceElement(els_of_face[i]);
|
|
|
|
|
|
|
|
bool has = 0;
|
|
|
|
bool hasno = 0;
|
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
|
|
|
{
|
|
|
|
if (usedp.Test(el[j]))
|
|
|
|
has = true;
|
|
|
|
else
|
|
|
|
hasno = true;
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (has && hasno)
|
2009-04-01 03:08:17 +06:00
|
|
|
changed = true;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (has)
|
2009-04-01 03:08:17 +06:00
|
|
|
for (int j = 0; j < el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
usedp.Set (el[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (changed);
|
|
|
|
|
|
|
|
int nface = 0;
|
|
|
|
for (int i = 0; i < els_of_face.Size(); i++)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
Element2d & el = SurfaceElement(els_of_face[i]);
|
|
|
|
|
|
|
|
int hasno = 0;
|
|
|
|
for (int j = 1; j <= el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!usedp.Test(el.PNum(j)))
|
|
|
|
hasno = 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
if (hasno)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (!nface)
|
|
|
|
{
|
|
|
|
FaceDescriptor nfd = GetFaceDescriptor(fdi);
|
|
|
|
nface = AddFaceDescriptor (nfd);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
el.SetIndex (nface);
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// reconnect list
|
|
|
|
if (nface)
|
|
|
|
{
|
2009-01-13 04:40:13 +05:00
|
|
|
facedecoding[nface-1].firstelement = -1;
|
|
|
|
facedecoding[fdi-1].firstelement = -1;
|
|
|
|
|
|
|
|
for (int i = 0; i < els_of_face.Size(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
int ind = SurfaceElement(els_of_face[i]).GetIndex();
|
|
|
|
SurfaceElement(els_of_face[i]).next = facedecoding[ind-1].firstelement;
|
|
|
|
facedecoding[ind-1].firstelement = els_of_face[i];
|
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
fdi++;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
2009-04-01 03:08:17 +06:00
|
|
|
fdi = 1;
|
|
|
|
while (fdi <= GetNFD())
|
|
|
|
{
|
|
|
|
int firstel = 0;
|
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
|
|
|
if (SurfaceElement(i).GetIndex() == fdi)
|
|
|
|
{
|
|
|
|
firstel = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!firstel) continue;
|
|
|
|
|
|
|
|
usedp.Clear();
|
|
|
|
for (int j = 1; j <= SurfaceElement(firstel).GetNP(); j++)
|
|
|
|
usedp.Set (SurfaceElement(firstel).PNum(j));
|
|
|
|
|
|
|
|
int changed;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
changed = 0;
|
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
|
|
|
{
|
|
|
|
const Element2d & el = SurfaceElement(i);
|
|
|
|
if (el.GetIndex() != fdi)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int has = 0;
|
|
|
|
int hasno = 0;
|
|
|
|
for (int j = 1; j <= el.GetNP(); j++)
|
|
|
|
{
|
|
|
|
if (usedp.Test(el.PNum(j)))
|
|
|
|
has = 1;
|
|
|
|
else
|
|
|
|
hasno = 1;
|
|
|
|
}
|
|
|
|
if (has && hasno)
|
|
|
|
changed = 1;
|
|
|
|
|
|
|
|
if (has)
|
|
|
|
for (int j = 1; j <= el.GetNP(); j++)
|
|
|
|
usedp.Set (el.PNum(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (changed);
|
|
|
|
|
|
|
|
int nface = 0;
|
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
|
|
|
{
|
|
|
|
Element2d & el = SurfaceElement(i);
|
|
|
|
if (el.GetIndex() != fdi)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int hasno = 0;
|
|
|
|
for (int j = 1; j <= el.GetNP(); j++)
|
|
|
|
{
|
|
|
|
if (!usedp.Test(el.PNum(j)))
|
|
|
|
hasno = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasno)
|
|
|
|
{
|
|
|
|
if (!nface)
|
|
|
|
{
|
|
|
|
FaceDescriptor nfd = GetFaceDescriptor(fdi);
|
|
|
|
nface = AddFaceDescriptor (nfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
el.SetIndex (nface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fdi++;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
*/
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-10-08 21:34:57 +06:00
|
|
|
|
|
|
|
void Mesh :: RebuildSurfaceElementLists ()
|
|
|
|
{
|
2019-09-30 11:53:32 +05:00
|
|
|
static Timer t("Mesh::LinkSurfaceElements"); RegionTimer reg (t);
|
|
|
|
|
2009-10-08 21:34:57 +06:00
|
|
|
for (int i = 0; i < facedecoding.Size(); i++)
|
|
|
|
facedecoding[i].firstelement = -1;
|
|
|
|
for (int i = surfelements.Size()-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int ind = surfelements[i].GetIndex();
|
|
|
|
surfelements[i].next = facedecoding[ind-1].firstelement;
|
|
|
|
facedecoding[ind-1].firstelement = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-08 11:44:59 +05:00
|
|
|
void Mesh :: GetSurfaceElementsOfFace (int facenr, Array<SurfaceElementIndex> & sei) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2011-07-25 14:40:23 +06:00
|
|
|
static int timer = NgProfiler::CreateTimer ("GetSurfaceElementsOfFace");
|
|
|
|
NgProfiler::RegionTimer reg (timer);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-10-08 21:36:46 +06:00
|
|
|
/*
|
2009-10-04 21:15:57 +06:00
|
|
|
sei.SetSize (0);
|
|
|
|
for (SurfaceElementIndex i = 0; i < GetNSE(); i++)
|
|
|
|
{
|
|
|
|
if ( (*this)[i].GetIndex () == facenr && (*this)[i][0] >= PointIndex::BASE &&
|
|
|
|
!(*this)[i].IsDeleted() )
|
|
|
|
{
|
|
|
|
sei.Append (i);
|
|
|
|
}
|
|
|
|
}
|
2009-10-08 21:36:46 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-10-04 21:15:57 +06:00
|
|
|
/* Philippose - 01/10/2009
|
|
|
|
Commented out the following lines, and activated the originally
|
|
|
|
commented out lines above because of a bug which causes corruption
|
|
|
|
of the variable "facedecoding" when a mesh is converted to second order
|
|
|
|
*/
|
|
|
|
|
|
|
|
// int size1 = sei.Size();
|
|
|
|
sei.SetSize(0);
|
|
|
|
|
|
|
|
SurfaceElementIndex si = facedecoding[facenr-1].firstelement;
|
|
|
|
while (si != -1)
|
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
if ( (*this)[si].GetIndex () == facenr && (*this)[si][0] >= PointIndex::BASE &&
|
|
|
|
!(*this)[si].IsDeleted() )
|
2009-10-04 21:15:57 +06:00
|
|
|
{
|
|
|
|
sei.Append (si);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
si = (*this)[si].next;
|
2009-10-04 21:15:57 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
// *testout << "with list = " << endl << sei << endl;
|
|
|
|
|
|
|
|
if (size1 != sei.Size())
|
|
|
|
{
|
|
|
|
cout << "size mismatch" << endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
*/
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
void Mesh :: CalcMinMaxAngle (double badellimit, double * retvalues)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int lpi1, lpi2, lpi3, lpi4;
|
|
|
|
double phimax = 0, phimin = 10;
|
|
|
|
double facephimax = 0, facephimin = 10;
|
|
|
|
int illegaltets = 0, negativetets = 0, badtets = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
for (i = 1; i <= GetNE(); i++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
int badel = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
Element & el = VolumeElement(i);
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (el.GetType() != TET)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
VolumeElement(i).flags.badel = 0;
|
|
|
|
continue;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (el.Volume(Points()) < 0)
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
badel = 1;
|
|
|
|
negativetets++;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!LegalTet (el))
|
|
|
|
{
|
2009-04-01 03:08:17 +06:00
|
|
|
badel = 1;
|
|
|
|
illegaltets++;
|
|
|
|
(*testout) << "illegal tet: " << i << " ";
|
|
|
|
for (j = 1; j <= el.GetNP(); j++)
|
2009-04-20 03:15:26 +06:00
|
|
|
(*testout) << el.PNum(j) << " ";
|
2009-04-01 03:08:17 +06:00
|
|
|
(*testout) << endl;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// angles between faces
|
|
|
|
for (lpi1 = 1; lpi1 <= 3; lpi1++)
|
|
|
|
for (lpi2 = lpi1+1; lpi2 <= 4; lpi2++)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
lpi3 = 1;
|
|
|
|
while (lpi3 == lpi1 || lpi3 == lpi2)
|
|
|
|
lpi3++;
|
|
|
|
lpi4 = 10 - lpi1 - lpi2 - lpi3;
|
|
|
|
|
|
|
|
const Point3d & p1 = Point (el.PNum(lpi1));
|
|
|
|
const Point3d & p2 = Point (el.PNum(lpi2));
|
|
|
|
const Point3d & p3 = Point (el.PNum(lpi3));
|
|
|
|
const Point3d & p4 = Point (el.PNum(lpi4));
|
|
|
|
|
|
|
|
Vec3d n(p1, p2);
|
|
|
|
n /= n.Length();
|
|
|
|
Vec3d v1(p1, p3);
|
|
|
|
Vec3d v2(p1, p4);
|
|
|
|
|
|
|
|
v1 -= (n * v1) * n;
|
|
|
|
v2 -= (n * v2) * n;
|
|
|
|
|
|
|
|
double cosphi = (v1 * v2) / (v1.Length() * v2.Length());
|
|
|
|
double phi = acos (cosphi);
|
|
|
|
if (phi > phimax) phimax = phi;
|
|
|
|
if (phi < phimin) phimin = phi;
|
|
|
|
|
|
|
|
if ((180/M_PI) * phi > badellimit)
|
|
|
|
badel = 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
// angles in faces
|
|
|
|
for (j = 1; j <= 4; j++)
|
|
|
|
{
|
2017-04-12 00:06:30 +05:00
|
|
|
Element2d face(TRIG);
|
2009-04-20 03:15:26 +06:00
|
|
|
el.GetFace (j, face);
|
|
|
|
for (lpi1 = 1; lpi1 <= 3; lpi1++)
|
|
|
|
{
|
|
|
|
lpi2 = lpi1 % 3 + 1;
|
|
|
|
lpi3 = lpi2 % 3 + 1;
|
|
|
|
|
|
|
|
const Point3d & p1 = Point (el.PNum(lpi1));
|
|
|
|
const Point3d & p2 = Point (el.PNum(lpi2));
|
|
|
|
const Point3d & p3 = Point (el.PNum(lpi3));
|
|
|
|
|
|
|
|
Vec3d v1(p1, p2);
|
|
|
|
Vec3d v2(p1, p3);
|
|
|
|
double cosphi = (v1 * v2) / (v1.Length() * v2.Length());
|
|
|
|
double phi = acos (cosphi);
|
|
|
|
if (phi > facephimax) facephimax = phi;
|
|
|
|
if (phi < facephimin) facephimin = phi;
|
|
|
|
|
|
|
|
if ((180/M_PI) * phi > badellimit)
|
|
|
|
badel = 1;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
VolumeElement(i).flags.badel = badel;
|
|
|
|
if (badel) badtets++;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!GetNE())
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
phimin = phimax = facephimin = facephimax = 0;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!retvalues)
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (1, "");
|
|
|
|
PrintMessage (1, "between planes: phimin = ", (180/M_PI) * phimin,
|
|
|
|
" phimax = ", (180/M_PI) *phimax);
|
|
|
|
PrintMessage (1, "inside planes: phimin = ", (180/M_PI) * facephimin,
|
|
|
|
" phimax = ", (180/M_PI) * facephimax);
|
|
|
|
PrintMessage (1, "");
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
else
|
2009-04-01 03:08:17 +06:00
|
|
|
{
|
2009-04-20 03:15:26 +06:00
|
|
|
retvalues[0] = (180/M_PI) * facephimin;
|
|
|
|
retvalues[1] = (180/M_PI) * facephimax;
|
|
|
|
retvalues[2] = (180/M_PI) * phimin;
|
|
|
|
retvalues[3] = (180/M_PI) * phimax;
|
2009-04-01 03:08:17 +06:00
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
PrintMessage (3, "negative tets: ", negativetets);
|
|
|
|
PrintMessage (3, "illegal tets: ", illegaltets);
|
|
|
|
PrintMessage (3, "bad tets: ", badtets);
|
|
|
|
}
|
2009-04-01 03:08:17 +06:00
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
int Mesh :: MarkIllegalElements ()
|
|
|
|
{
|
2019-09-05 16:38:41 +05:00
|
|
|
if(!boundaryedges)
|
|
|
|
BuildBoundaryEdges();
|
|
|
|
|
2019-08-13 21:47:35 +05:00
|
|
|
atomic<int> cnt = 0;
|
|
|
|
ParallelForRange( Range(volelements), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
int cnt_local = 0;
|
|
|
|
for(auto & el : volelements.Range(myrange))
|
|
|
|
if (!LegalTet (el))
|
|
|
|
cnt_local++;
|
|
|
|
cnt += cnt_local;
|
|
|
|
});
|
2009-04-20 03:15:26 +06:00
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// #ifdef NONE
|
|
|
|
// void Mesh :: AddIdentification (int pi1, int pi2, int identnr)
|
|
|
|
// {
|
|
|
|
// INDEX_2 pair(pi1, pi2);
|
|
|
|
// // pair.Sort();
|
|
|
|
// identifiedpoints->Set (pair, identnr);
|
|
|
|
// if (identnr > maxidentnr)
|
|
|
|
// maxidentnr = identnr;
|
|
|
|
// timestamp = NextTimeStamp();
|
|
|
|
// }
|
|
|
|
|
|
|
|
// int Mesh :: GetIdentification (int pi1, int pi2) const
|
|
|
|
// {
|
|
|
|
// INDEX_2 pair(pi1, pi2);
|
|
|
|
// if (identifiedpoints->Used (pair))
|
|
|
|
// return identifiedpoints->Get(pair);
|
|
|
|
// else
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// int Mesh :: GetIdentificationSym (int pi1, int pi2) const
|
|
|
|
// {
|
|
|
|
// INDEX_2 pair(pi1, pi2);
|
|
|
|
// if (identifiedpoints->Used (pair))
|
|
|
|
// return identifiedpoints->Get(pair);
|
|
|
|
|
|
|
|
// pair = INDEX_2 (pi2, pi1);
|
|
|
|
// if (identifiedpoints->Used (pair))
|
|
|
|
// return identifiedpoints->Get(pair);
|
|
|
|
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
// void Mesh :: GetIdentificationMap (int identnr, NgArray<int> & identmap) const
|
2009-04-20 03:15:26 +06:00
|
|
|
// {
|
|
|
|
// int i, j;
|
|
|
|
|
|
|
|
// identmap.SetSize (GetNP());
|
|
|
|
// for (i = 1; i <= identmap.Size(); i++)
|
|
|
|
// identmap.Elem(i) = 0;
|
|
|
|
|
|
|
|
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
|
|
|
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
|
|
|
// {
|
|
|
|
// INDEX_2 i2;
|
|
|
|
// int nr;
|
|
|
|
// identifiedpoints->GetData (i, j, i2, nr);
|
|
|
|
|
|
|
|
// if (nr == identnr)
|
|
|
|
// {
|
|
|
|
// identmap.Elem(i2.I1()) = i2.I2();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
// void Mesh :: GetIdentificationPairs (int identnr, NgArray<INDEX_2> & identpairs) const
|
2009-04-20 03:15:26 +06:00
|
|
|
// {
|
|
|
|
// int i, j;
|
|
|
|
|
|
|
|
// identpairs.SetSize(0);
|
|
|
|
|
|
|
|
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
|
|
|
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
|
|
|
// {
|
|
|
|
// INDEX_2 i2;
|
|
|
|
// int nr;
|
|
|
|
// identifiedpoints->GetData (i, j, i2, nr);
|
|
|
|
|
|
|
|
// if (identnr == 0 || nr == identnr)
|
|
|
|
// identpairs.Append (i2);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// #endif
|
|
|
|
|
2020-03-15 22:02:50 +05:00
|
|
|
int Mesh::IdentifyPeriodicBoundaries(const string &s1,
|
|
|
|
const string &s2,
|
|
|
|
const Transformation<3> &mapping)
|
|
|
|
{
|
|
|
|
auto nr = ident->GetMaxNr() + 1;
|
|
|
|
double lami[4];
|
|
|
|
GetElementOfPoint({0,0,0}, lami, true);
|
|
|
|
set<int> identified_points;
|
|
|
|
Point3d pmin, pmax;
|
|
|
|
GetBox(pmin, pmax);
|
|
|
|
auto eps = 1e-10 * (pmax-pmin).Length();
|
|
|
|
for(const auto& se : surfelements)
|
|
|
|
{
|
|
|
|
if(GetBCName(se.index-1) != s1)
|
|
|
|
continue;
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2020-03-15 22:02:50 +05:00
|
|
|
for(const auto& pi : se.PNums())
|
|
|
|
{
|
|
|
|
// cout << "pi = " << pi << endl;
|
|
|
|
if(identified_points.find(pi) != identified_points.end())
|
|
|
|
continue;
|
|
|
|
auto pt = (*this)[pi];
|
|
|
|
auto mapped_pt = mapping(pt);
|
|
|
|
auto other_nr = GetElementOfPoint(mapped_pt, lami);
|
|
|
|
int index = -1;
|
|
|
|
auto other_el = VolumeElement(other_nr);
|
|
|
|
for(auto i : Range(4))
|
|
|
|
if((mapped_pt - (*this)[other_el.PNums()[i]]).Length() < eps)
|
|
|
|
{
|
|
|
|
index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(index == -1)
|
|
|
|
throw Exception("Did not find mapped point, are you sure your mesh is periodic?");
|
|
|
|
auto other_pi = other_el.PNums()[index];
|
|
|
|
identified_points.insert(pi);
|
|
|
|
ident->Add(pi, other_pi, nr);
|
|
|
|
// cout << "other pi = " << other_pi << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nr;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
void Mesh :: InitPointCurve(double red, double green, double blue) const
|
|
|
|
{
|
|
|
|
pointcurves_startpoint.Append(pointcurves.Size());
|
|
|
|
pointcurves_red.Append(red);
|
|
|
|
pointcurves_green.Append(green);
|
|
|
|
pointcurves_blue.Append(blue);
|
|
|
|
}
|
|
|
|
void Mesh :: AddPointCurvePoint(const Point3d & pt) const
|
|
|
|
{
|
|
|
|
pointcurves.Append(pt);
|
|
|
|
}
|
|
|
|
int Mesh :: GetNumPointCurves(void) const
|
|
|
|
{
|
|
|
|
return pointcurves_startpoint.Size();
|
|
|
|
}
|
|
|
|
int Mesh :: GetNumPointsOfPointCurve(int curve) const
|
|
|
|
{
|
|
|
|
if(curve == pointcurves_startpoint.Size()-1)
|
|
|
|
return (pointcurves.Size() - pointcurves_startpoint.Last());
|
|
|
|
else
|
|
|
|
return (pointcurves_startpoint[curve+1]-pointcurves_startpoint[curve]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Point3d & Mesh :: GetPointCurvePoint(int curve, int n) const
|
|
|
|
{
|
|
|
|
return pointcurves[pointcurves_startpoint[curve]+n];
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh :: GetPointCurveColor(int curve, double & red, double & green, double & blue) const
|
|
|
|
{
|
|
|
|
red = pointcurves_red[curve];
|
|
|
|
green = pointcurves_green[curve];
|
|
|
|
blue = pointcurves_blue[curve];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Mesh :: ComputeNVertices ()
|
|
|
|
{
|
|
|
|
numvertices = 0;
|
2019-03-30 18:02:38 +05:00
|
|
|
|
|
|
|
for (const Element & el : VolumeElements())
|
|
|
|
for (PointIndex v : el.Vertices())
|
|
|
|
if (v > numvertices) numvertices = v;
|
|
|
|
|
|
|
|
for (const Element2d & el : SurfaceElements())
|
2017-04-11 12:01:36 +05:00
|
|
|
for (PointIndex v : el.Vertices())
|
|
|
|
if (v > numvertices) numvertices = v;
|
2009-04-01 03:08:17 +06:00
|
|
|
|
2019-03-30 18:02:38 +05:00
|
|
|
numvertices += 1-PointIndex::BASE;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
int Mesh :: GetNV () const
|
|
|
|
{
|
|
|
|
if (numvertices < 0)
|
|
|
|
return GetNP();
|
|
|
|
else
|
|
|
|
return numvertices;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh :: SetNP (int np)
|
|
|
|
{
|
|
|
|
points.SetSize(np);
|
|
|
|
// ptyps.SetSize(np);
|
|
|
|
|
|
|
|
int mlold = mlbetweennodes.Size();
|
|
|
|
mlbetweennodes.SetSize(np);
|
|
|
|
if (np > mlold)
|
|
|
|
for (int i = mlold+PointIndex::BASE;
|
|
|
|
i < np+PointIndex::BASE; i++)
|
|
|
|
{
|
|
|
|
mlbetweennodes[i].I1() = PointIndex::BASE-1;
|
|
|
|
mlbetweennodes[i].I2() = PointIndex::BASE-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetIdentifications().SetMaxPointNr (np + PointIndex::BASE-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-30 12:36:15 +05:00
|
|
|
Table<ElementIndex, PointIndex> Mesh :: CreatePoint2ElementTable() const
|
|
|
|
{
|
|
|
|
TableCreator<ElementIndex, PointIndex> creator(GetNP());
|
|
|
|
for ( ; !creator.Done(); creator++)
|
|
|
|
ngcore::ParallelForRange
|
|
|
|
(Range(volelements), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (ElementIndex ei : myrange)
|
|
|
|
for (PointIndex pi : (*this)[ei].PNums())
|
|
|
|
creator.Add (pi, ei);
|
|
|
|
});
|
|
|
|
|
|
|
|
auto elementsonnode = creator.MoveTable();
|
|
|
|
ngcore::ParallelForRange
|
|
|
|
(elementsonnode.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (PointIndex pi : myrange)
|
|
|
|
QuickSort(elementsonnode[pi]);
|
2019-10-04 20:07:10 +05:00
|
|
|
}, ngcore::TasksPerThread(4));
|
2019-09-30 12:36:15 +05:00
|
|
|
|
|
|
|
return move(elementsonnode);
|
|
|
|
}
|
|
|
|
|
2019-10-04 20:07:10 +05:00
|
|
|
Table<SurfaceElementIndex, PointIndex> Mesh :: CreatePoint2SurfaceElementTable( int faceindex ) const
|
2019-09-30 12:36:15 +05:00
|
|
|
{
|
2019-10-04 20:07:10 +05:00
|
|
|
static Timer timer("Mesh::CreatePoint2SurfaceElementTable"); RegionTimer rt(timer);
|
|
|
|
|
2019-09-30 12:36:15 +05:00
|
|
|
TableCreator<SurfaceElementIndex, PointIndex> creator(GetNP());
|
2019-10-04 20:07:10 +05:00
|
|
|
|
|
|
|
if(faceindex==0)
|
|
|
|
{
|
|
|
|
for ( ; !creator.Done(); creator++)
|
|
|
|
ngcore::ParallelForRange
|
|
|
|
(Range(surfelements), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (SurfaceElementIndex ei : myrange)
|
|
|
|
for (PointIndex pi : (*this)[ei].PNums())
|
|
|
|
creator.Add (pi, ei);
|
|
|
|
}, ngcore::TasksPerThread(4));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Array<SurfaceElementIndex> face_els;
|
|
|
|
GetSurfaceElementsOfFace(faceindex, face_els);
|
|
|
|
for ( ; !creator.Done(); creator++)
|
|
|
|
ngcore::ParallelForRange
|
|
|
|
(Range(face_els), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (auto i : myrange)
|
|
|
|
for (PointIndex pi : (*this)[face_els[i]].PNums())
|
|
|
|
creator.Add (pi, face_els[i]);
|
|
|
|
}, ngcore::TasksPerThread(4));
|
|
|
|
}
|
2019-09-30 12:36:15 +05:00
|
|
|
|
|
|
|
auto elementsonnode = creator.MoveTable();
|
|
|
|
ngcore::ParallelForRange
|
|
|
|
(elementsonnode.Range(), [&] (auto myrange)
|
|
|
|
{
|
|
|
|
for (PointIndex pi : myrange)
|
|
|
|
QuickSort(elementsonnode[pi]);
|
|
|
|
});
|
|
|
|
|
|
|
|
return move(elementsonnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
/*
|
|
|
|
void Mesh :: BuildConnectedNodes ()
|
|
|
|
{
|
|
|
|
if (PureTetMesh())
|
|
|
|
{
|
|
|
|
connectedtonode.SetSize(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int i, j, k;
|
|
|
|
int np = GetNP();
|
|
|
|
int ne = GetNE();
|
|
|
|
TABLE<int> conto(np);
|
|
|
|
for (i = 1; i <= ne; i++)
|
|
|
|
{
|
|
|
|
const Element & el = VolumeElement(i);
|
|
|
|
|
|
|
|
if (el.GetType() == PRISM)
|
|
|
|
{
|
|
|
|
for (j = 1; j <= 6; j++)
|
|
|
|
{
|
|
|
|
int n1 = el.PNum (j);
|
|
|
|
int n2 = el.PNum ((j+2)%6+1);
|
|
|
|
// if (n1 != n2)
|
|
|
|
{
|
|
|
|
int found = 0;
|
|
|
|
for (k = 1; k <= conto.EntrySize(n1); k++)
|
|
|
|
if (conto.Get(n1, k) == n2)
|
|
|
|
{
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
conto.Add (n1, n2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (el.GetType() == PYRAMID)
|
|
|
|
{
|
|
|
|
for (j = 1; j <= 4; j++)
|
|
|
|
{
|
|
|
|
int n1, n2;
|
|
|
|
switch (j)
|
|
|
|
{
|
|
|
|
case 1: n1 = 1; n2 = 4; break;
|
|
|
|
case 2: n1 = 4; n2 = 1; break;
|
|
|
|
case 3: n1 = 2; n2 = 3; break;
|
|
|
|
case 4: n1 = 3; n2 = 2; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int found = 0;
|
|
|
|
for (k = 1; k <= conto.EntrySize(n1); k++)
|
|
|
|
if (conto.Get(n1, k) == n2)
|
|
|
|
{
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
conto.Add (n1, n2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedtonode.SetSize(np);
|
|
|
|
for (i = 1; i <= np; i++)
|
|
|
|
connectedtonode.Elem(i) = 0;
|
|
|
|
|
|
|
|
for (i = 1; i <= np; i++)
|
|
|
|
if (connectedtonode.Elem(i) == 0)
|
|
|
|
{
|
|
|
|
connectedtonode.Elem(i) = i;
|
|
|
|
ConnectToNodeRec (i, i, conto);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh :: ConnectToNodeRec (int node, int tonode,
|
|
|
|
const TABLE<int> & conto)
|
|
|
|
{
|
|
|
|
int i, n2;
|
|
|
|
// (*testout) << "connect " << node << " to " << tonode << endl;
|
|
|
|
for (i = 1; i <= conto.EntrySize(node); i++)
|
|
|
|
{
|
|
|
|
n2 = conto.Get(node, i);
|
|
|
|
if (!connectedtonode.Get(n2))
|
|
|
|
{
|
|
|
|
connectedtonode.Elem(n2) = tonode;
|
|
|
|
ConnectToNodeRec (n2, tonode, conto);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
bool Mesh :: PureTrigMesh (int faceindex) const
|
|
|
|
{
|
2011-07-25 17:33:19 +06:00
|
|
|
// if (!faceindex) return !mparam.quad;
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if (!faceindex)
|
2011-07-25 17:33:19 +06:00
|
|
|
{
|
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
|
|
|
if (SurfaceElement(i).GetNP() != 3)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2011-07-25 17:33:19 +06:00
|
|
|
for (int i = 1; i <= GetNSE(); i++)
|
2009-04-20 03:15:26 +06:00
|
|
|
if (SurfaceElement(i).GetIndex() == faceindex &&
|
|
|
|
SurfaceElement(i).GetNP() != 3)
|
2011-07-25 17:33:19 +06:00
|
|
|
return false;
|
|
|
|
return true;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Mesh :: PureTetMesh () const
|
|
|
|
{
|
|
|
|
for (ElementIndex ei = 0; ei < GetNE(); ei++)
|
|
|
|
if (VolumeElement(ei).GetNP() != 4)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-01-04 15:48:45 +05:00
|
|
|
void Mesh :: UpdateTopology (TaskManager tm,
|
|
|
|
Tracer tracer)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2018-01-04 15:48:45 +05:00
|
|
|
topology.Update(tm, tracer);
|
|
|
|
(*tracer)("call update clusters", false);
|
2018-01-04 17:00:01 +05:00
|
|
|
clusters->Update(tm, tracer);
|
2018-01-04 15:48:45 +05:00
|
|
|
(*tracer)("call update clusters", true);
|
2016-02-28 09:24:26 +05:00
|
|
|
#ifdef PARALLEL
|
|
|
|
if (paralleltop)
|
|
|
|
{
|
|
|
|
paralleltop->Reset();
|
|
|
|
paralleltop->UpdateCoarseGrid();
|
|
|
|
}
|
|
|
|
#endif
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2015-04-27 14:18:22 +05:00
|
|
|
void Mesh :: BuildCurvedElements (const Refinement * ref, int aorder, bool arational)
|
|
|
|
{
|
|
|
|
GetCurvedElements().BuildCurvedElements (ref, aorder, arational);
|
|
|
|
|
2015-06-12 16:45:42 +05:00
|
|
|
for (SegmentIndex seg = 0; seg < GetNSeg(); seg++)
|
|
|
|
(*this)[seg].SetCurved (GetCurvedElements().IsSegmentCurved (seg));
|
2015-04-27 14:18:22 +05:00
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
2015-06-12 16:45:42 +05:00
|
|
|
(*this)[sei].SetCurved (GetCurvedElements().IsSurfaceElementCurved (sei));
|
|
|
|
for (ElementIndex ei = 0; ei < GetNE(); ei++)
|
|
|
|
(*this)[ei].SetCurved (GetCurvedElements().IsElementCurved (ei));
|
2015-04-27 14:18:22 +05:00
|
|
|
|
|
|
|
SetNextMajorTimeStamp();
|
|
|
|
}
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2018-05-02 00:20:54 +05:00
|
|
|
void Mesh :: BuildCurvedElements (int aorder)
|
|
|
|
{
|
|
|
|
if (!GetGeometry())
|
|
|
|
throw NgException ("don't have a geometry for mesh curving");
|
|
|
|
|
|
|
|
GetCurvedElements().BuildCurvedElements (&GetGeometry()->GetRefinement(), aorder, false);
|
|
|
|
|
|
|
|
for (SegmentIndex seg = 0; seg < GetNSeg(); seg++)
|
|
|
|
(*this)[seg].SetCurved (GetCurvedElements().IsSegmentCurved (seg));
|
|
|
|
for (SurfaceElementIndex sei = 0; sei < GetNSE(); sei++)
|
|
|
|
(*this)[sei].SetCurved (GetCurvedElements().IsSurfaceElementCurved (sei));
|
|
|
|
for (ElementIndex ei = 0; ei < GetNE(); ei++)
|
|
|
|
(*this)[ei].SetCurved (GetCurvedElements().IsElementCurved (ei));
|
|
|
|
|
|
|
|
SetNextMajorTimeStamp();
|
|
|
|
}
|
|
|
|
|
2016-02-27 00:30:40 +05:00
|
|
|
void Mesh :: SetMaterial (int domnr, const string & mat)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (domnr > materials.Size())
|
|
|
|
{
|
|
|
|
int olds = materials.Size();
|
|
|
|
materials.SetSize (domnr);
|
2017-05-13 13:24:12 +05:00
|
|
|
for (int i = olds; i < domnr-1; i++)
|
|
|
|
materials[i] = new string("default");
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
2016-02-27 00:30:40 +05:00
|
|
|
/*
|
2009-04-20 03:15:26 +06:00
|
|
|
materials.Elem(domnr) = new char[strlen(mat)+1];
|
|
|
|
strcpy (materials.Elem(domnr), mat);
|
2016-02-27 00:30:40 +05:00
|
|
|
*/
|
|
|
|
materials.Elem(domnr) = new string(mat);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2017-05-31 10:53:24 +05:00
|
|
|
string Mesh :: defaultmat = "default";
|
2016-02-27 00:30:40 +05:00
|
|
|
const string & Mesh :: GetMaterial (int domnr) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if (domnr <= materials.Size())
|
2016-02-27 00:30:40 +05:00
|
|
|
return *materials.Get(domnr);
|
2017-05-13 13:24:12 +05:00
|
|
|
static string emptystring("default");
|
2016-02-27 00:30:40 +05:00
|
|
|
return emptystring;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh ::SetNBCNames ( int nbcn )
|
|
|
|
{
|
|
|
|
if ( bcnames.Size() )
|
|
|
|
for ( int i = 0; i < bcnames.Size(); i++)
|
|
|
|
if ( bcnames[i] ) delete bcnames[i];
|
|
|
|
bcnames.SetSize(nbcn);
|
|
|
|
bcnames = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh ::SetBCName ( int bcnr, const string & abcname )
|
|
|
|
{
|
2015-09-01 13:50:15 +05:00
|
|
|
if (bcnr >= bcnames.Size())
|
|
|
|
{
|
|
|
|
int oldsize = bcnames.Size();
|
|
|
|
bcnames.SetSize (bcnr+1); // keeps contents
|
|
|
|
for (int i = oldsize; i <= bcnr; i++)
|
|
|
|
bcnames[i] = nullptr;
|
|
|
|
}
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if ( bcnames[bcnr] ) delete bcnames[bcnr];
|
|
|
|
if ( abcname != "default" )
|
|
|
|
bcnames[bcnr] = new string ( abcname );
|
|
|
|
else
|
2015-09-01 13:50:15 +05:00
|
|
|
bcnames[bcnr] = nullptr;
|
|
|
|
|
|
|
|
for (auto & fd : facedecoding)
|
2016-02-08 19:53:16 +05:00
|
|
|
if (fd.BCProperty() <= bcnames.Size())
|
|
|
|
fd.SetBCName (bcnames[fd.BCProperty()-1]);
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2012-11-09 13:27:26 +06:00
|
|
|
const string & Mesh ::GetBCName ( int bcnr ) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
2012-11-09 13:27:26 +06:00
|
|
|
static string defaultstring = "default";
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if ( !bcnames.Size() )
|
2012-11-09 13:27:26 +06:00
|
|
|
return defaultstring;
|
2015-09-01 22:21:52 +05:00
|
|
|
|
|
|
|
if (bcnr < 0 || bcnr >= bcnames.Size())
|
|
|
|
throw NgException ("illegal bc-number");
|
|
|
|
|
2009-04-20 03:15:26 +06:00
|
|
|
if ( bcnames[bcnr] )
|
|
|
|
return *bcnames[bcnr];
|
|
|
|
else
|
2012-11-09 13:27:26 +06:00
|
|
|
return defaultstring;
|
2009-04-20 03:15:26 +06:00
|
|
|
}
|
|
|
|
|
2016-10-04 22:30:57 +05:00
|
|
|
void Mesh :: SetNCD2Names( int ncd2n )
|
|
|
|
{
|
|
|
|
if (cd2names.Size())
|
|
|
|
for(int i=0; i<cd2names.Size(); i++)
|
|
|
|
if(cd2names[i]) delete cd2names[i];
|
|
|
|
cd2names.SetSize(ncd2n);
|
|
|
|
cd2names = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh :: SetCD2Name ( int cd2nr, const string & abcname )
|
|
|
|
{
|
2016-10-17 20:31:09 +05:00
|
|
|
cd2nr--;
|
2016-10-05 22:48:18 +05:00
|
|
|
(*testout) << "setCD2Name on edge " << cd2nr << " to " << abcname << endl;
|
2016-10-04 22:30:57 +05:00
|
|
|
if (cd2nr >= cd2names.Size())
|
|
|
|
{
|
|
|
|
int oldsize = cd2names.Size();
|
|
|
|
cd2names.SetSize(cd2nr+1);
|
|
|
|
for(int i= oldsize; i<= cd2nr; i++)
|
|
|
|
cd2names[i] = nullptr;
|
|
|
|
}
|
2016-10-05 22:48:18 +05:00
|
|
|
//if (cd2names[cd2nr]) delete cd2names[cd2nr];
|
2016-10-04 22:30:57 +05:00
|
|
|
if (abcname != "default")
|
|
|
|
cd2names[cd2nr] = new string(abcname);
|
|
|
|
else
|
|
|
|
cd2names[cd2nr] = nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-03 21:15:34 +05:00
|
|
|
string Mesh :: cd2_default_name = "default";
|
2018-03-08 18:46:34 +05:00
|
|
|
string Mesh :: default_bc = "default";
|
2016-10-04 22:30:57 +05:00
|
|
|
const string & Mesh :: GetCD2Name (int cd2nr) const
|
|
|
|
{
|
|
|
|
static string defaultstring = "default";
|
|
|
|
if (!cd2names.Size())
|
|
|
|
return defaultstring;
|
|
|
|
|
|
|
|
if (cd2nr < 0 || cd2nr >= cd2names.Size())
|
2016-10-05 22:48:18 +05:00
|
|
|
return defaultstring;
|
2016-10-04 22:30:57 +05:00
|
|
|
|
|
|
|
if (cd2names[cd2nr])
|
|
|
|
return *cd2names[cd2nr];
|
|
|
|
else
|
|
|
|
return defaultstring;
|
|
|
|
}
|
|
|
|
|
2018-08-06 20:09:03 +05:00
|
|
|
void Mesh :: SetNCD3Names( int ncd3n )
|
|
|
|
{
|
|
|
|
if (cd3names.Size())
|
|
|
|
for(int i=0; i<cd3names.Size(); i++)
|
|
|
|
if(cd3names[i]) delete cd3names[i];
|
|
|
|
cd3names.SetSize(ncd3n);
|
|
|
|
cd3names = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mesh :: SetCD3Name ( int cd3nr, const string & abcname )
|
|
|
|
{
|
|
|
|
cd3nr--;
|
|
|
|
(*testout) << "setCD3Name on vertex " << cd3nr << " to " << abcname << endl;
|
|
|
|
if (cd3nr >= cd3names.Size())
|
|
|
|
{
|
|
|
|
int oldsize = cd3names.Size();
|
|
|
|
cd3names.SetSize(cd3nr+1);
|
|
|
|
for(int i= oldsize; i<= cd3nr; i++)
|
|
|
|
cd3names[i] = nullptr;
|
|
|
|
}
|
|
|
|
if (abcname != "default")
|
|
|
|
cd3names[cd3nr] = new string(abcname);
|
|
|
|
else
|
|
|
|
cd3names[cd3nr] = nullptr;
|
|
|
|
}
|
2020-01-15 15:56:23 +05:00
|
|
|
|
|
|
|
int Mesh :: AddCD3Name (const string & aname)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < cd3names.Size(); i++)
|
|
|
|
if (*cd3names[i] == aname)
|
|
|
|
return i;
|
|
|
|
cd3names.Append (new string(aname));
|
|
|
|
return cd3names.Size()-1;
|
|
|
|
}
|
|
|
|
|
2018-08-06 20:09:03 +05:00
|
|
|
string Mesh :: cd3_default_name = "default";
|
|
|
|
const string & Mesh :: GetCD3Name (int cd3nr) const
|
|
|
|
{
|
|
|
|
static string defaultstring = "default";
|
|
|
|
if (!cd3names.Size())
|
|
|
|
return defaultstring;
|
|
|
|
|
|
|
|
if (cd3nr < 0 || cd3nr >= cd3names.Size())
|
|
|
|
return defaultstring;
|
|
|
|
|
|
|
|
if (cd3names[cd3nr])
|
|
|
|
return *cd3names[cd3nr];
|
|
|
|
else
|
|
|
|
return defaultstring;
|
|
|
|
}
|
|
|
|
|
2019-10-06 02:02:32 +05:00
|
|
|
|
|
|
|
NgArray<string*> & Mesh :: GetRegionNamesCD (int codim)
|
|
|
|
{
|
|
|
|
switch (codim)
|
|
|
|
{
|
|
|
|
case 0: return materials;
|
|
|
|
case 1: return bcnames;
|
|
|
|
case 2: return cd2names;
|
|
|
|
case 3: return cd3names;
|
|
|
|
default: throw Exception("don't have regions of co-dimension "+ToString(codim));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
void Mesh :: SetUserData(const char * id, NgArray<int> & data)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(userdata_int.Used(id))
|
2019-02-11 13:11:57 +05:00
|
|
|
delete userdata_int[id];
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> * newdata = new NgArray<int>(data);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
userdata_int.Set(id,newdata);
|
|
|
|
}
|
2019-07-09 13:39:16 +05:00
|
|
|
bool Mesh :: GetUserData(const char * id, NgArray<int> & data, int shift) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(userdata_int.Used(id))
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
if(data.Size() < (*userdata_int[id]).Size()+shift)
|
|
|
|
data.SetSize((*userdata_int[id]).Size()+shift);
|
|
|
|
for(int i=0; i<(*userdata_int[id]).Size(); i++)
|
|
|
|
data[i+shift] = (*userdata_int[id])[i];
|
2009-04-20 03:15:26 +06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data.SetSize(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:39:16 +05:00
|
|
|
void Mesh :: SetUserData(const char * id, NgArray<double> & data)
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(userdata_double.Used(id))
|
2019-02-11 13:11:57 +05:00
|
|
|
delete userdata_double[id];
|
2009-04-20 03:15:26 +06:00
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<double> * newdata = new NgArray<double>(data);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
userdata_double.Set(id,newdata);
|
|
|
|
}
|
2019-07-09 13:39:16 +05:00
|
|
|
bool Mesh :: GetUserData(const char * id, NgArray<double> & data, int shift) const
|
2009-04-20 03:15:26 +06:00
|
|
|
{
|
|
|
|
if(userdata_double.Used(id))
|
|
|
|
{
|
2019-02-11 13:11:57 +05:00
|
|
|
if(data.Size() < (*userdata_double[id]).Size()+shift)
|
|
|
|
data.SetSize((*userdata_double[id]).Size()+shift);
|
|
|
|
for(int i=0; i<(*userdata_double[id]).Size(); i++)
|
|
|
|
data[i+shift] = (*userdata_double[id])[i];
|
2009-04-20 03:15:26 +06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data.SetSize(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Mesh :: PrintMemInfo (ostream & ost) const
|
|
|
|
{
|
|
|
|
ost << "Mesh Mem:" << endl;
|
|
|
|
|
|
|
|
ost << GetNP() << " Points, of size "
|
|
|
|
<< sizeof (Point3d) << " + " << sizeof(POINTTYPE) << " = "
|
|
|
|
<< GetNP() * (sizeof (Point3d) + sizeof(POINTTYPE)) << endl;
|
|
|
|
|
|
|
|
ost << GetNSE() << " Surface elements, of size "
|
|
|
|
<< sizeof (Element2d) << " = "
|
|
|
|
<< GetNSE() * sizeof(Element2d) << endl;
|
|
|
|
|
|
|
|
ost << GetNE() << " Volume elements, of size "
|
|
|
|
<< sizeof (Element) << " = "
|
|
|
|
<< GetNE() * sizeof(Element) << endl;
|
|
|
|
|
2017-04-11 12:01:36 +05:00
|
|
|
// ost << "surfs on node:";
|
|
|
|
// surfacesonnode.PrintMemInfo (cout);
|
2009-04-20 03:15:26 +06:00
|
|
|
|
|
|
|
ost << "boundaryedges: ";
|
|
|
|
if (boundaryedges)
|
|
|
|
boundaryedges->PrintMemInfo (cout);
|
|
|
|
|
|
|
|
ost << "surfelementht: ";
|
|
|
|
if (surfelementht)
|
|
|
|
surfelementht->PrintMemInfo (cout);
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|