2009-01-13 04:40:13 +05:00
|
|
|
#include <mystdlib.h>
|
|
|
|
#include "meshing.hpp"
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
|
2011-03-04 02:42:20 +05:00
|
|
|
DLL_HEADER void Optimize2d (Mesh & mesh, MeshingParameters & mp)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2019-06-03 13:42:32 +05:00
|
|
|
static Timer timer("optimize2d"); RegionTimer reg(timer);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
mesh.CalcSurfacesOfNode();
|
|
|
|
|
2019-06-24 22:29:38 +05:00
|
|
|
bool secondorder = mesh.GetNP() > mesh.GetNV();
|
|
|
|
|
|
|
|
|
|
|
|
if (secondorder)
|
|
|
|
{
|
|
|
|
for (SurfaceElementIndex ei = 0; ei < mesh.GetNSE(); ei++)
|
|
|
|
mesh[ei].SetType(TRIG);
|
|
|
|
}
|
|
|
|
mesh.Compress();
|
|
|
|
|
2014-08-31 18:12:31 +06:00
|
|
|
const char * optstr = mp.optimize2d.c_str();
|
2009-01-13 04:40:13 +05:00
|
|
|
int optsteps = mp.optsteps2d;
|
|
|
|
|
2013-02-03 20:40:27 +06:00
|
|
|
for (int i = 1; i <= optsteps; i++)
|
2009-01-13 04:40:13 +05:00
|
|
|
for (size_t j = 1; j <= strlen(optstr); j++)
|
|
|
|
{
|
|
|
|
if (multithread.terminate) break;
|
|
|
|
switch (optstr[j-1])
|
|
|
|
{
|
|
|
|
case 's':
|
|
|
|
{ // topological swap
|
|
|
|
MeshOptimize2d meshopt;
|
2014-12-02 18:23:36 +05:00
|
|
|
meshopt.SetMetricWeight (mp.elsizeweight);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.EdgeSwapping (mesh, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'S':
|
|
|
|
{ // metric swap
|
|
|
|
MeshOptimize2d meshopt;
|
2014-12-02 18:23:36 +05:00
|
|
|
meshopt.SetMetricWeight (mp.elsizeweight);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.EdgeSwapping (mesh, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'm':
|
|
|
|
{
|
|
|
|
MeshOptimize2d meshopt;
|
2014-12-02 18:23:36 +05:00
|
|
|
meshopt.SetMetricWeight (mp.elsizeweight);
|
2011-07-25 14:40:23 +06:00
|
|
|
meshopt.ImproveMesh(mesh, mp);
|
2009-01-13 04:40:13 +05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
MeshOptimize2d meshopt;
|
2014-12-02 18:23:36 +05:00
|
|
|
meshopt.SetMetricWeight (mp.elsizeweight);
|
2009-01-13 04:40:13 +05:00
|
|
|
meshopt.CombineImprove(mesh);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
cerr << "Optimization code " << optstr[j-1] << " not defined" << endl;
|
|
|
|
}
|
|
|
|
}
|
2019-06-24 22:29:38 +05:00
|
|
|
if (secondorder)
|
|
|
|
{
|
2019-07-30 15:40:22 +05:00
|
|
|
mesh.GetGeometry()->GetRefinement().MakeSecondOrder(mesh);
|
2019-06-24 22:29:38 +05:00
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|