mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
#include <mystdlib.h>
|
|
#include "meshing.hpp"
|
|
|
|
namespace netgen
|
|
{
|
|
|
|
void Optimize2d (Mesh & mesh, MeshingParameters & mp)
|
|
{
|
|
int i;
|
|
|
|
//double h = mp.maxh;
|
|
|
|
mesh.CalcSurfacesOfNode();
|
|
|
|
const char * optstr = mp.optimize2d;
|
|
int optsteps = mp.optsteps2d;
|
|
|
|
// cout << "optstr = " << optstr << endl;
|
|
|
|
for (i = 1; i <= optsteps; i++)
|
|
for (size_t j = 1; j <= strlen(optstr); j++)
|
|
{
|
|
if (multithread.terminate) break;
|
|
switch (optstr[j-1])
|
|
{
|
|
case 's':
|
|
{ // topological swap
|
|
MeshOptimize2d meshopt;
|
|
meshopt.SetMetricWeight (0);
|
|
meshopt.EdgeSwapping (mesh, 0);
|
|
break;
|
|
}
|
|
case 'S':
|
|
{ // metric swap
|
|
MeshOptimize2d meshopt;
|
|
meshopt.SetMetricWeight (0);
|
|
meshopt.EdgeSwapping (mesh, 1);
|
|
break;
|
|
}
|
|
case 'm':
|
|
{
|
|
MeshOptimize2d meshopt;
|
|
meshopt.SetMetricWeight (1);
|
|
meshopt.ImproveMesh(mesh);
|
|
break;
|
|
}
|
|
|
|
case 'c':
|
|
{
|
|
MeshOptimize2d meshopt;
|
|
meshopt.SetMetricWeight (0.2);
|
|
meshopt.CombineImprove(mesh);
|
|
break;
|
|
}
|
|
default:
|
|
cerr << "Optimization code " << optstr[j-1] << " not defined" << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|