2009-01-13 04:40:13 +05:00
|
|
|
#include <mystdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include <myadt.hpp>
|
|
|
|
|
|
|
|
#include <linalg.hpp>
|
|
|
|
#include <csg.hpp>
|
|
|
|
#include <meshing.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
|
2021-06-21 08:22:00 +05:00
|
|
|
NgArray<SpecialPoint> global_specpoints; // for visualization
|
|
|
|
//static NgArray<MeshPoint> spoints;
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#define TCL_OK 0
|
|
|
|
#define TCL_ERROR 1
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-06-21 08:22:00 +05:00
|
|
|
static void FindPoints (CSGeometry & geom,
|
|
|
|
NgArray<SpecialPoint> & specpoints,
|
|
|
|
NgArray<MeshPoint> & spoints,
|
|
|
|
Mesh & mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
PrintMessage (1, "Start Findpoints");
|
|
|
|
|
|
|
|
const char * savetask = multithread.task;
|
|
|
|
multithread.task = "Find points";
|
|
|
|
|
2017-09-22 19:55:10 +05:00
|
|
|
mesh.pointelements.SetSize(0);
|
2009-01-13 04:40:13 +05:00
|
|
|
for (int i = 0; i < geom.GetNUserPoints(); i++)
|
|
|
|
{
|
2017-09-22 19:55:10 +05:00
|
|
|
auto up = geom.GetUserPoint(i);
|
|
|
|
auto pnum = mesh.AddPoint(up);
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh.Points().Last().Singularity (geom.GetUserPointRefFactor(i));
|
|
|
|
mesh.AddLockedPoint (PointIndex (i+1));
|
2020-01-15 15:56:23 +05:00
|
|
|
int index = up.GetIndex();
|
|
|
|
if (index == -1)
|
|
|
|
index = mesh.AddCD3Name (up.GetName())+1;
|
|
|
|
// cout << "adding 0d element, pnum = " << pnum << ", material index = " << index << endl;
|
|
|
|
mesh.pointelements.Append (Element0d(pnum, index));
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
SpecialPointCalculation spc;
|
|
|
|
|
|
|
|
spc.SetIdEps(geom.GetIdEps());
|
|
|
|
|
|
|
|
if (spoints.Size() == 0)
|
|
|
|
spc.CalcSpecialPoints (geom, spoints);
|
|
|
|
|
|
|
|
PrintMessage (2, "Analyze spec points");
|
|
|
|
spc.AnalyzeSpecialPoints (geom, spoints, specpoints);
|
2021-06-21 08:22:00 +05:00
|
|
|
|
|
|
|
{
|
|
|
|
static mutex mut;
|
|
|
|
lock_guard<mutex> guard(mut);
|
|
|
|
global_specpoints = specpoints;
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
PrintMessage (5, "done");
|
|
|
|
|
|
|
|
(*testout) << specpoints.Size() << " special points:" << endl;
|
|
|
|
for (int i = 0; i < specpoints.Size(); i++)
|
|
|
|
specpoints[i].Print (*testout);
|
|
|
|
|
|
|
|
/*
|
|
|
|
for (int i = 1; i <= geom.identifications.Size(); i++)
|
|
|
|
geom.identifications.Elem(i)->IdentifySpecialPoints (specpoints);
|
|
|
|
*/
|
|
|
|
multithread.task = savetask;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-06-21 08:22:00 +05:00
|
|
|
static void FindEdges (CSGeometry & geom, Mesh & mesh,
|
|
|
|
NgArray<SpecialPoint> & specpoints,
|
|
|
|
NgArray<MeshPoint> & spoints,
|
|
|
|
MeshingParameters & mparam,
|
2014-08-30 06:15:59 +06:00
|
|
|
const bool setmeshsize = false)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2014-08-30 06:15:59 +06:00
|
|
|
EdgeCalculation ec (geom, specpoints, mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
ec.SetIdEps(geom.GetIdEps());
|
|
|
|
ec.Calc (mparam.maxh, mesh);
|
|
|
|
|
|
|
|
for (int i = 0; i < geom.singedges.Size(); i++)
|
|
|
|
{
|
|
|
|
geom.singedges[i]->FindPointsOnEdge (mesh);
|
|
|
|
if(setmeshsize)
|
|
|
|
geom.singedges[i]->SetMeshSize(mesh,10.*geom.BoundingBox().Diam());
|
|
|
|
}
|
|
|
|
for (int i = 0; i < geom.singpoints.Size(); i++)
|
|
|
|
geom.singpoints[i]->FindPoints (mesh);
|
|
|
|
|
|
|
|
for (int i = 1; i <= mesh.GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
//(*testout) << "segment " << mesh.LineSegment(i) << endl;
|
|
|
|
int ok = 0;
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
if (mesh.GetFaceDescriptor(k).SegmentFits (mesh.LineSegment(i)))
|
|
|
|
{
|
|
|
|
ok = k;
|
|
|
|
//(*testout) << "fits to " << k << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
ok = mesh.AddFaceDescriptor (FaceDescriptor (mesh.LineSegment(i)));
|
|
|
|
//(*testout) << "did not find, now " << ok << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//(*testout) << "change from " << mesh.LineSegment(i).si;
|
|
|
|
mesh.LineSegment(i).si = ok;
|
|
|
|
//(*testout) << " to " << mesh.LineSegment(i).si << endl;
|
|
|
|
}
|
|
|
|
|
2016-10-11 17:10:36 +05:00
|
|
|
for(int k = 1; k<=mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
*testout << "face: " << k << endl
|
|
|
|
<< "FD: " << mesh.GetFaceDescriptor(k) << endl;
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (geom.identifications.Size())
|
|
|
|
{
|
|
|
|
PrintMessage (3, "Find Identifications");
|
|
|
|
for (int i = 0; i < geom.identifications.Size(); i++)
|
|
|
|
{
|
|
|
|
geom.identifications[i]->IdentifyPoints (mesh);
|
|
|
|
//(*testout) << "identification " << i << " is "
|
|
|
|
// << *geom.identifications[i] << endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
for (int i = 0; i < geom.identifications.Size(); i++)
|
|
|
|
geom.identifications[i]->IdentifyFaces (mesh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// find intersecting segments
|
|
|
|
PrintMessage (3, "Check intersecting edges");
|
|
|
|
|
|
|
|
Point3d pmin, pmax;
|
|
|
|
mesh.GetBox (pmin, pmax);
|
2017-11-10 17:22:20 +05:00
|
|
|
BoxTree<3> segtree (pmin, pmax);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
for (SegmentIndex si = 0; si < mesh.GetNSeg(); si++)
|
|
|
|
{
|
|
|
|
if (mesh[si].seginfo)
|
|
|
|
{
|
|
|
|
Box<3> hbox;
|
2009-04-03 20:39:52 +06:00
|
|
|
hbox.Set (mesh[mesh[si][0]]);
|
|
|
|
hbox.Add (mesh[mesh[si][1]]);
|
2009-01-13 04:40:13 +05:00
|
|
|
segtree.Insert (hbox.PMin(), hbox.PMax(), si);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> loc;
|
2009-01-13 04:40:13 +05:00
|
|
|
if (!ec.point_on_edge_problem)
|
|
|
|
for (SegmentIndex si = 0; si < mesh.GetNSeg(); si++)
|
|
|
|
{
|
|
|
|
if (!mesh[si].seginfo) continue;
|
|
|
|
|
|
|
|
Box<3> hbox;
|
2009-04-03 20:39:52 +06:00
|
|
|
hbox.Set (mesh[mesh[si][0]]);
|
|
|
|
hbox.Add (mesh[mesh[si][1]]);
|
2009-01-13 04:40:13 +05:00
|
|
|
hbox.Increase (1e-6);
|
|
|
|
segtree.GetIntersecting (hbox.PMin(), hbox.PMax(), loc);
|
|
|
|
|
|
|
|
// for (SegmentIndex sj = 0; sj < si; sj++)
|
|
|
|
for (int j = 0; j < loc.Size(); j++)
|
|
|
|
{
|
|
|
|
SegmentIndex sj = loc[j];
|
|
|
|
if (sj >= si) continue;
|
|
|
|
if (!mesh[si].seginfo || !mesh[sj].seginfo) continue;
|
2009-04-03 20:39:52 +06:00
|
|
|
if (mesh[mesh[si][0]].GetLayer() != mesh[mesh[sj][1]].GetLayer()) continue;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-03 20:39:52 +06:00
|
|
|
Point<3> pi1 = mesh[mesh[si][0]];
|
|
|
|
Point<3> pi2 = mesh[mesh[si][1]];
|
|
|
|
Point<3> pj1 = mesh[mesh[sj][0]];
|
|
|
|
Point<3> pj2 = mesh[mesh[sj][1]];
|
2009-01-13 04:40:13 +05:00
|
|
|
Vec<3> vi = pi2 - pi1;
|
|
|
|
Vec<3> vj = pj2 - pj1;
|
|
|
|
|
|
|
|
if (sqr (vi * vj) > (1.-1e-6) * Abs2 (vi) * Abs2 (vj)) continue;
|
|
|
|
|
|
|
|
// pi1 + vi t = pj1 + vj s
|
|
|
|
Mat<3,2> mat;
|
|
|
|
Vec<3> rhs;
|
|
|
|
Vec<2> sol;
|
|
|
|
|
|
|
|
for (int jj = 0; jj < 3; jj++)
|
|
|
|
{
|
|
|
|
mat(jj,0) = vi(jj);
|
|
|
|
mat(jj,1) = -vj(jj);
|
|
|
|
rhs(jj) = pj1(jj)-pi1(jj);
|
|
|
|
}
|
|
|
|
|
|
|
|
mat.Solve (rhs, sol);
|
|
|
|
|
|
|
|
//(*testout) << "mat " << mat << endl << "rhs " << rhs << endl << "sol " << sol << endl;
|
|
|
|
|
|
|
|
if (sol(0) > 1e-6 && sol(0) < 1-1e-6 &&
|
|
|
|
sol(1) > 1e-6 && sol(1) < 1-1e-6 &&
|
|
|
|
Abs (rhs - mat*sol) < 1e-6)
|
|
|
|
{
|
|
|
|
Point<3> ip = pi1 + sol(0) * vi;
|
|
|
|
|
|
|
|
//(*testout) << "ip " << ip << endl;
|
|
|
|
|
|
|
|
Point<3> pip = ip;
|
|
|
|
ProjectToEdge (geom.GetSurface (mesh[si].surfnr1),
|
|
|
|
geom.GetSurface (mesh[si].surfnr2), pip);
|
|
|
|
|
|
|
|
//(*testout) << "Dist (ip, pip_si) " << Dist (ip, pip) << endl;
|
|
|
|
if (Dist (ip, pip) > 1e-6*geom.MaxSize()) continue;
|
|
|
|
pip = ip;
|
|
|
|
ProjectToEdge (geom.GetSurface (mesh[sj].surfnr1),
|
|
|
|
geom.GetSurface (mesh[sj].surfnr2), pip);
|
|
|
|
|
|
|
|
//(*testout) << "Dist (ip, pip_sj) " << Dist (ip, pip) << endl;
|
|
|
|
if (Dist (ip, pip) > 1e-6*geom.MaxSize()) continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cout << "Intersection at " << ip << endl;
|
|
|
|
|
|
|
|
geom.AddUserPoint (ip);
|
2009-04-03 20:39:52 +06:00
|
|
|
spoints.Append (MeshPoint (ip, mesh[mesh[si][0]].GetLayer()));
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh.AddPoint (ip);
|
|
|
|
|
|
|
|
(*testout) << "found intersection at " << ip << endl;
|
|
|
|
(*testout) << "sol = " << sol << endl;
|
|
|
|
(*testout) << "res = " << (rhs - mat*sol) << endl;
|
|
|
|
(*testout) << "segs = " << pi1 << " - " << pi2 << endl;
|
|
|
|
(*testout) << "and = " << pj1 << " - " << pj2 << endl << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
static void MeshSurface (CSGeometry & geom, Mesh & mesh, MeshingParameters & mparam)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
const char * savetask = multithread.task;
|
|
|
|
multithread.task = "Surface meshing";
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<Segment> segments;
|
2009-01-13 04:40:13 +05:00
|
|
|
int noldp = mesh.GetNP();
|
|
|
|
|
|
|
|
double starttime = GetTime();
|
|
|
|
|
|
|
|
// find master faces from identified
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> masterface(mesh.GetNFD());
|
2009-01-13 04:40:13 +05:00
|
|
|
for (int i = 1; i <= mesh.GetNFD(); i++)
|
|
|
|
masterface.Elem(i) = i;
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<INDEX_2> fpairs;
|
2009-01-13 04:40:13 +05:00
|
|
|
bool changed;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
changed = 0;
|
|
|
|
for (int i = 0; i < geom.identifications.Size(); i++)
|
|
|
|
{
|
|
|
|
geom.identifications[i]->GetIdentifiedFaces (fpairs);
|
|
|
|
|
|
|
|
for (int j = 0; j < fpairs.Size(); j++)
|
|
|
|
{
|
|
|
|
if (masterface.Get(fpairs[j].I1()) <
|
|
|
|
masterface.Get(fpairs[j].I2()))
|
|
|
|
{
|
|
|
|
changed = 1;
|
|
|
|
masterface.Elem(fpairs[j].I2()) =
|
|
|
|
masterface.Elem(fpairs[j].I1());
|
|
|
|
}
|
|
|
|
if (masterface.Get(fpairs[j].I2()) <
|
|
|
|
masterface.Get(fpairs[j].I1()))
|
|
|
|
{
|
|
|
|
changed = 1;
|
|
|
|
masterface.Elem(fpairs[j].I1()) =
|
|
|
|
masterface.Elem(fpairs[j].I2());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (changed);
|
|
|
|
|
|
|
|
|
|
|
|
int bccnt=0;
|
|
|
|
for (int k = 0; k < geom.GetNSurf(); k++)
|
|
|
|
bccnt = max2 (bccnt, geom.GetSurface(k)->GetBCProperty());
|
|
|
|
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
bool increased = false;
|
|
|
|
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
const Surface * surf = geom.GetSurface(fd.SurfNr());
|
|
|
|
|
|
|
|
if (fd.TLOSurface() &&
|
|
|
|
geom.GetTopLevelObject(fd.TLOSurface()-1) -> GetBCProp() > 0)
|
|
|
|
fd.SetBCProperty (geom.GetTopLevelObject(fd.TLOSurface()-1) -> GetBCProp());
|
|
|
|
else if (surf -> GetBCProperty() != -1)
|
|
|
|
fd.SetBCProperty (surf->GetBCProperty());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bccnt++;
|
|
|
|
fd.SetBCProperty (bccnt);
|
|
|
|
increased = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int l = 0; l < geom.bcmodifications.Size(); l++)
|
|
|
|
{
|
|
|
|
if (geom.GetSurfaceClassRepresentant (fd.SurfNr()) ==
|
|
|
|
geom.GetSurfaceClassRepresentant (geom.bcmodifications[l].si) &&
|
|
|
|
(fd.DomainIn() == geom.bcmodifications[l].tlonr+1 ||
|
|
|
|
fd.DomainOut() == geom.bcmodifications[l].tlonr+1))
|
|
|
|
{
|
|
|
|
if(geom.bcmodifications[l].bcname == NULL)
|
|
|
|
fd.SetBCProperty (geom.bcmodifications[l].bcnr);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!increased)
|
|
|
|
{
|
|
|
|
bccnt++;
|
|
|
|
fd.SetBCProperty (bccnt);
|
|
|
|
increased = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh.SetNBCNames( bccnt );
|
|
|
|
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
const Surface * surf = geom.GetSurface(fd.SurfNr());
|
|
|
|
if (fd.TLOSurface() )
|
|
|
|
{
|
|
|
|
int bcp = fd.BCProperty();
|
|
|
|
string nextbcname = geom.GetTopLevelObject(fd.TLOSurface()-1) -> GetBCName();
|
|
|
|
if ( nextbcname != "default" )
|
|
|
|
mesh.SetBCName ( bcp - 1 , nextbcname );
|
|
|
|
}
|
|
|
|
else // if (surf -> GetBCProperty() != -1)
|
|
|
|
{
|
|
|
|
int bcp = fd.BCProperty();
|
|
|
|
string nextbcname = surf->GetBCName();
|
|
|
|
if ( nextbcname != "default" )
|
|
|
|
mesh.SetBCName ( bcp - 1, nextbcname );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
fd.SetBCName ( mesh.GetBCNamePtr ( fd.BCProperty() - 1 ) );
|
|
|
|
}
|
2016-10-04 22:30:57 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
//!!
|
|
|
|
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
//const Surface * surf = geom.GetSurface(fd.SurfNr());
|
|
|
|
|
|
|
|
for (int l = 0; l < geom.bcmodifications.Size(); l++)
|
|
|
|
{
|
|
|
|
if (geom.GetSurfaceClassRepresentant (fd.SurfNr()) ==
|
|
|
|
geom.GetSurfaceClassRepresentant (geom.bcmodifications[l].si) &&
|
|
|
|
(fd.DomainIn() == geom.bcmodifications[l].tlonr+1 ||
|
|
|
|
fd.DomainOut() == geom.bcmodifications[l].tlonr+1) &&
|
|
|
|
geom.bcmodifications[l].bcname != NULL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int bcp = fd.BCProperty();
|
|
|
|
mesh.SetBCName ( bcp - 1, *(geom.bcmodifications[l].bcname) );
|
|
|
|
fd.SetBCName ( mesh.GetBCNamePtr ( bcp - 1) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int k = 0; k<geom.bcmodifications.Size(); k++)
|
|
|
|
{
|
|
|
|
delete geom.bcmodifications[k].bcname;
|
|
|
|
geom.bcmodifications[k].bcname = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//!!
|
|
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < geom.singfaces.Size(); j++)
|
|
|
|
{
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<int> surfs;
|
2009-01-13 04:40:13 +05:00
|
|
|
geom.GetIndependentSurfaceIndices (geom.singfaces[j]->GetSolid(),
|
|
|
|
geom.BoundingBox(), surfs);
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
for (int l = 0; l < surfs.Size(); l++)
|
|
|
|
if (surfs[l] == fd.SurfNr())
|
|
|
|
{
|
|
|
|
if (geom.singfaces[j]->GetDomainNr() == fd.DomainIn())
|
2009-09-22 13:12:00 +06:00
|
|
|
fd.SetDomainInSingular (1);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (geom.singfaces[j]->GetDomainNr() == fd.DomainOut())
|
2009-09-22 13:12:00 +06:00
|
|
|
fd.SetDomainOutSingular (1);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// assemble edge hash-table
|
|
|
|
mesh.CalcSurfacesOfNode();
|
|
|
|
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
multithread.percent = 100.0 * k / (mesh.GetNFD()+1e-10);
|
|
|
|
|
|
|
|
if (masterface.Get(k) != k)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
|
|
|
|
(*testout) << "Surface " << k << endl;
|
|
|
|
(*testout) << "Face Descriptor: " << fd << endl;
|
|
|
|
PrintMessage (1, "Surface ", k, " / ", mesh.GetNFD());
|
|
|
|
|
|
|
|
int oldnf = mesh.GetNSE();
|
|
|
|
|
|
|
|
const Surface * surf =
|
|
|
|
geom.GetSurface((mesh.GetFaceDescriptor(k).SurfNr()));
|
|
|
|
|
|
|
|
|
2019-10-28 17:44:51 +05:00
|
|
|
Meshing2Surfaces meshing(geom, *surf, mparam, geom.BoundingBox());
|
2009-01-13 04:40:13 +05:00
|
|
|
meshing.SetStartTime (starttime);
|
|
|
|
|
2009-08-24 08:56:22 +06:00
|
|
|
double eps = 1e-8 * geom.MaxSize();
|
2009-01-13 04:40:13 +05:00
|
|
|
for (PointIndex pi = PointIndex::BASE; pi < noldp+PointIndex::BASE; pi++)
|
|
|
|
{
|
2009-11-16 13:18:00 +05:00
|
|
|
// if(surf->PointOnSurface(mesh[pi]))
|
2009-01-13 04:40:13 +05:00
|
|
|
meshing.AddPoint (mesh[pi], pi, NULL,
|
2009-08-24 08:56:22 +06:00
|
|
|
(surf->PointOnSurface(mesh[pi], eps) != 0));
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
segments.SetSize (0);
|
|
|
|
|
|
|
|
for (SegmentIndex si = 0; si < mesh.GetNSeg(); si++)
|
|
|
|
if (mesh[si].si == k)
|
|
|
|
{
|
|
|
|
segments.Append (mesh[si]);
|
|
|
|
(*testout) << "appending segment " << mesh[si] << endl;
|
|
|
|
//<< " from " << mesh[mesh[si][0]]
|
|
|
|
// << " to " <<mesh[mesh[si][1]]<< endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*testout) << "num-segments " << segments.Size() << endl;
|
|
|
|
|
|
|
|
for (int i = 1; i <= geom.identifications.Size(); i++)
|
|
|
|
{
|
|
|
|
geom.identifications.Get(i)->
|
|
|
|
BuildSurfaceElements(segments, mesh, surf);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int si = 0; si < segments.Size(); si++)
|
|
|
|
{
|
|
|
|
PointGeomInfo gi;
|
|
|
|
gi.trignum = k;
|
2009-04-03 20:39:52 +06:00
|
|
|
meshing.AddBoundaryElement (segments[si][0] + 1 - PointIndex::BASE,
|
|
|
|
segments[si][1] + 1 - PointIndex::BASE,
|
2009-01-13 04:40:13 +05:00
|
|
|
gi, gi);
|
|
|
|
}
|
|
|
|
|
|
|
|
double maxh = mparam.maxh;
|
|
|
|
if (fd.DomainIn() != 0)
|
|
|
|
{
|
|
|
|
const Solid * s1 =
|
|
|
|
geom.GetTopLevelObject(fd.DomainIn()-1) -> GetSolid();
|
|
|
|
if (s1->GetMaxH() < maxh)
|
|
|
|
maxh = s1->GetMaxH();
|
|
|
|
maxh = min2(maxh, geom.GetTopLevelObject(fd.DomainIn()-1)->GetMaxH());
|
|
|
|
}
|
|
|
|
if (fd.DomainOut() != 0)
|
|
|
|
{
|
|
|
|
const Solid * s1 =
|
|
|
|
geom.GetTopLevelObject(fd.DomainOut()-1) -> GetSolid();
|
|
|
|
if (s1->GetMaxH() < maxh)
|
|
|
|
maxh = s1->GetMaxH();
|
|
|
|
maxh = min2(maxh, geom.GetTopLevelObject(fd.DomainOut()-1)->GetMaxH());
|
|
|
|
}
|
|
|
|
if (fd.TLOSurface() != 0)
|
|
|
|
{
|
|
|
|
double hi = geom.GetTopLevelObject(fd.TLOSurface()-1) -> GetMaxH();
|
|
|
|
if (hi < maxh) maxh = hi;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*testout) << "domin = " << fd.DomainIn() << ", domout = " << fd.DomainOut()
|
|
|
|
<< ", tlo-surf = " << fd.TLOSurface()
|
|
|
|
<< " mpram.maxh = " << mparam.maxh << ", maxh = " << maxh << endl;
|
|
|
|
|
|
|
|
mparam.checkoverlap = 0;
|
|
|
|
|
|
|
|
MESHING2_RESULT res =
|
2011-07-25 14:40:23 +06:00
|
|
|
meshing.GenerateMesh (mesh, mparam, maxh, k);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
if (res != MESHING2_OK)
|
|
|
|
{
|
|
|
|
PrintError ("Problem in Surface mesh generation");
|
|
|
|
throw NgException ("Problem in Surface mesh generation");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (multithread.terminate) return;
|
2021-06-21 11:36:14 +05:00
|
|
|
|
2009-08-24 06:03:40 +06:00
|
|
|
for (SurfaceElementIndex sei = oldnf; sei < mesh.GetNSE(); sei++)
|
|
|
|
mesh[sei].SetIndex (k);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2019-09-30 17:19:12 +05:00
|
|
|
auto n_illegal_trigs = mesh.FindIllegalTrigs();
|
|
|
|
PrintMessage (3, n_illegal_trigs, " illegal triangles");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
// mesh.CalcSurfacesOfNode();
|
|
|
|
|
|
|
|
if (segments.Size())
|
|
|
|
{
|
|
|
|
// surface was meshed, not copied
|
2009-11-16 13:18:00 +05:00
|
|
|
|
|
|
|
static int timer = NgProfiler::CreateTimer ("total surface mesh optimization");
|
|
|
|
NgProfiler::RegionTimer reg (timer);
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
PrintMessage (2, "Optimize Surface");
|
|
|
|
for (int i = 1; i <= mparam.optsteps2d; i++)
|
|
|
|
{
|
|
|
|
if (multithread.terminate) return;
|
2009-11-16 13:18:00 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2019-10-02 23:29:18 +05:00
|
|
|
MeshOptimize2d meshopt(mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.SetFaceIndex (k);
|
|
|
|
meshopt.SetImproveEdges (0);
|
|
|
|
meshopt.SetMetricWeight (mparam.elsizeweight);
|
|
|
|
meshopt.SetWriteStatus (0);
|
2009-11-16 13:18:00 +05:00
|
|
|
|
2019-10-02 23:29:18 +05:00
|
|
|
meshopt.EdgeSwapping (i > mparam.optsteps2d/2);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (multithread.terminate) return;
|
|
|
|
{
|
|
|
|
// mesh.CalcSurfacesOfNode();
|
|
|
|
|
2019-10-02 23:29:18 +05:00
|
|
|
MeshOptimize2d meshopt(mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.SetFaceIndex (k);
|
|
|
|
meshopt.SetImproveEdges (0);
|
|
|
|
meshopt.SetMetricWeight (mparam.elsizeweight);
|
|
|
|
meshopt.SetWriteStatus (0);
|
|
|
|
|
2019-10-02 23:29:18 +05:00
|
|
|
meshopt.ImproveMesh(mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-10-02 23:29:18 +05:00
|
|
|
MeshOptimize2d meshopt(mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.SetFaceIndex (k);
|
|
|
|
meshopt.SetImproveEdges (0);
|
|
|
|
meshopt.SetMetricWeight (mparam.elsizeweight);
|
|
|
|
meshopt.SetWriteStatus (0);
|
|
|
|
|
2019-10-02 23:29:18 +05:00
|
|
|
meshopt.CombineImprove();
|
2009-01-13 04:40:13 +05:00
|
|
|
// mesh.CalcSurfacesOfNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (multithread.terminate) return;
|
|
|
|
{
|
2019-10-02 23:29:18 +05:00
|
|
|
MeshOptimize2d meshopt(mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.SetFaceIndex (k);
|
|
|
|
meshopt.SetImproveEdges (0);
|
|
|
|
meshopt.SetMetricWeight (mparam.elsizeweight);
|
|
|
|
meshopt.SetWriteStatus (0);
|
|
|
|
|
2019-10-02 23:29:18 +05:00
|
|
|
meshopt.ImproveMesh(mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PrintMessage (3, (mesh.GetNSE() - oldnf), " elements, ", mesh.GetNP(), " points");
|
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
mparam.Render();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
mesh.Compress();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
changed = 0;
|
|
|
|
for (int k = 1; k <= mesh.GetNFD(); k++)
|
|
|
|
{
|
|
|
|
multithread.percent = 100.0 * k / (mesh.GetNFD()+1e-10);
|
|
|
|
|
|
|
|
if (masterface.Get(k) == k)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
FaceDescriptor & fd = mesh.GetFaceDescriptor(k);
|
|
|
|
|
|
|
|
(*testout) << "Surface " << k << endl;
|
|
|
|
(*testout) << "Face Descriptor: " << fd << endl;
|
|
|
|
PrintMessage (2, "Surface ", k);
|
|
|
|
|
|
|
|
int oldnf = mesh.GetNSE();
|
|
|
|
|
|
|
|
const Surface * surf =
|
|
|
|
geom.GetSurface((mesh.GetFaceDescriptor(k).SurfNr()));
|
|
|
|
|
|
|
|
/*
|
|
|
|
if (surf -> GetBCProperty() != -1)
|
|
|
|
fd.SetBCProperty (surf->GetBCProperty());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bccnt++;
|
|
|
|
fd.SetBCProperty (bccnt);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
segments.SetSize (0);
|
|
|
|
for (int i = 1; i <= mesh.GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
Segment * seg = &mesh.LineSegment(i);
|
|
|
|
if (seg->si == k)
|
|
|
|
segments.Append (*seg);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 1; i <= geom.identifications.Size(); i++)
|
|
|
|
{
|
|
|
|
geom.identifications.Elem(i)->GetIdentifiedFaces (fpairs);
|
|
|
|
int found = 0;
|
|
|
|
for (int j = 1; j <= fpairs.Size(); j++)
|
|
|
|
if (fpairs.Get(j).I1() == k || fpairs.Get(j).I2() == k)
|
|
|
|
found = 1;
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
geom.identifications.Get(i)->
|
|
|
|
BuildSurfaceElements(segments, mesh, surf);
|
|
|
|
if (!segments.Size())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (multithread.terminate) return;
|
|
|
|
|
2009-08-24 06:03:40 +06:00
|
|
|
for (SurfaceElementIndex sei = oldnf; sei < mesh.GetNSE(); sei++)
|
|
|
|
mesh[sei].SetIndex (k);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
if (!segments.Size())
|
|
|
|
{
|
|
|
|
masterface.Elem(k) = k;
|
|
|
|
changed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintMessage (3, (mesh.GetNSE() - oldnf), " elements, ", mesh.GetNP(), " points");
|
|
|
|
}
|
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
mparam.Render();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
while (changed);
|
|
|
|
|
|
|
|
|
|
|
|
mesh.SplitSeparatedFaces();
|
|
|
|
mesh.CalcSurfacesOfNode();
|
|
|
|
|
|
|
|
multithread.task = savetask;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int CSGGenerateMesh (CSGeometry & geom,
|
2016-12-05 17:50:21 +05:00
|
|
|
shared_ptr<Mesh> & mesh, MeshingParameters & mparam)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2021-06-21 08:22:00 +05:00
|
|
|
NgArray<SpecialPoint> specpoints;
|
|
|
|
NgArray<MeshPoint> spoints;
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (mesh && mesh->GetNSE() &&
|
|
|
|
!geom.GetNSolids())
|
|
|
|
{
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart < MESHCONST_MESHVOLUME)
|
|
|
|
mparam.perfstepsstart = MESHCONST_MESHVOLUME;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart <= MESHCONST_ANALYSE)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-01-24 18:35:44 +05:00
|
|
|
if (mesh)
|
|
|
|
mesh -> DeleteMesh();
|
|
|
|
else
|
2014-09-26 02:23:31 +06:00
|
|
|
mesh = make_shared<Mesh>();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
mesh->SetGlobalH (mparam.maxh);
|
|
|
|
mesh->SetMinimalH (mparam.minh);
|
|
|
|
|
2019-07-09 13:39:16 +05:00
|
|
|
NgArray<double> maxhdom(geom.GetNTopLevelObjects());
|
2009-01-13 04:40:13 +05:00
|
|
|
for (int i = 0; i < maxhdom.Size(); i++)
|
|
|
|
maxhdom[i] = geom.GetTopLevelObject(i)->GetMaxH();
|
|
|
|
|
|
|
|
mesh->SetMaxHDomain (maxhdom);
|
|
|
|
|
|
|
|
if (mparam.uselocalh)
|
|
|
|
{
|
|
|
|
double maxsize = geom.MaxSize();
|
|
|
|
mesh->SetLocalH (Point<3>(-maxsize, -maxsize, -maxsize),
|
|
|
|
Point<3>(maxsize, maxsize, maxsize),
|
|
|
|
mparam.grading);
|
|
|
|
|
|
|
|
mesh -> LoadLocalMeshSize (mparam.meshsizefilename);
|
2016-09-29 19:44:16 +05:00
|
|
|
for (auto mspnt : mparam.meshsize_points)
|
|
|
|
mesh -> RestrictLocalH (mspnt.pnt, mspnt.h);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
spoints.SetSize(0);
|
2021-06-21 08:22:00 +05:00
|
|
|
FindPoints (geom, specpoints, spoints, *mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
PrintMessage (5, "find points done");
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Special points found" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl << endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (multithread.terminate || mparam.perfstepsend <= MESHCONST_ANALYSE)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart <= MESHCONST_MESHEDGES)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2021-06-21 08:22:00 +05:00
|
|
|
FindEdges (geom, *mesh, specpoints, spoints, mparam, true);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Edges meshed" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
if (multithread.terminate)
|
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
if (mparam.uselocalh)
|
|
|
|
{
|
2011-07-25 14:40:23 +06:00
|
|
|
mesh->CalcLocalH(mparam.grading);
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->DeleteMesh();
|
|
|
|
|
2021-06-21 08:22:00 +05:00
|
|
|
FindPoints (geom, specpoints, spoints, *mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
2021-06-21 08:22:00 +05:00
|
|
|
FindEdges (geom, *mesh, specpoints, spoints, mparam, true);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
|
|
|
mesh->DeleteMesh();
|
|
|
|
|
2021-06-21 08:22:00 +05:00
|
|
|
FindPoints (geom, specpoints, spoints, *mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
2021-06-21 08:22:00 +05:00
|
|
|
FindEdges (geom, *mesh, specpoints, spoints, mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (multithread.terminate || mparam.perfstepsend <= MESHCONST_MESHEDGES)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart <= MESHCONST_MESHSURFACE)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2014-08-30 06:15:59 +06:00
|
|
|
MeshSurface (geom, *mesh, mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Surfaces meshed" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl;
|
|
|
|
#endif
|
2016-12-11 16:12:05 +05:00
|
|
|
|
|
|
|
/*
|
|
|
|
if (mparam.uselocalh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-07-25 14:40:23 +06:00
|
|
|
mesh->CalcLocalH(mparam.grading);
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->DeleteMesh();
|
|
|
|
|
|
|
|
FindPoints (geom, *mesh);
|
|
|
|
if (multithread.terminate) return TCL_OK;
|
2014-08-30 06:15:59 +06:00
|
|
|
FindEdges (geom, *mesh, mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
2014-08-30 06:15:59 +06:00
|
|
|
MeshSurface (geom, *mesh, mparam);
|
2009-01-13 04:40:13 +05:00
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
}
|
2016-12-11 16:12:05 +05:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Surfaces remeshed" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef STAT_STREAM
|
|
|
|
(*statout) << mesh->GetNSeg() << " & "
|
|
|
|
<< mesh->GetNSE() << " & - &"
|
|
|
|
<< GetTime() << " & " << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
MeshQuality2d (*mesh);
|
|
|
|
mesh->CalcSurfacesOfNode();
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (multithread.terminate || mparam.perfstepsend <= MESHCONST_OPTSURFACE)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart <= MESHCONST_MESHVOLUME)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
multithread.task = "Volume meshing";
|
|
|
|
|
|
|
|
MESHING3_RESULT res =
|
|
|
|
MeshVolume (mparam, *mesh);
|
|
|
|
|
|
|
|
if (res != MESHING3_OK) return TCL_ERROR;
|
|
|
|
|
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
|
|
|
RemoveIllegalElements (*mesh);
|
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
|
|
|
MeshQuality3d (*mesh);
|
|
|
|
|
|
|
|
for (int i = 0; i < geom.GetNTopLevelObjects(); i++)
|
|
|
|
mesh->SetMaterial (i+1, geom.GetTopLevelObject(i)->GetMaterial().c_str());
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef STAT_STREAM
|
|
|
|
(*statout) << GetTime() << " & ";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Volume meshed" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (multithread.terminate || mparam.perfstepsend <= MESHCONST_MESHVOLUME)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
|
2016-12-05 17:50:21 +05:00
|
|
|
if (mparam.perfstepsstart <= MESHCONST_OPTVOLUME)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
multithread.task = "Volume optimization";
|
|
|
|
|
|
|
|
OptimizeVolume (mparam, *mesh);
|
|
|
|
if (multithread.terminate) return TCL_OK;
|
|
|
|
|
|
|
|
#ifdef STAT_STREAM
|
|
|
|
(*statout) << GetTime() << " & "
|
|
|
|
<< mesh->GetNE() << " & "
|
|
|
|
<< mesh->GetNP() << " " << '\\' << '\\' << " \\" << "hline" << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Volume optimized" << endl
|
|
|
|
<< "time = " << GetTime() << " sec" << endl
|
|
|
|
<< "points: " << mesh->GetNP() << endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-15 22:18:27 +05:00
|
|
|
mesh -> OrderElements();
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|