Skip to content
Snippets Groups Projects
Commit fdc867f4 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

No commit message

No commit message
parent 4d9d8541
No related branches found
No related tags found
No related merge requests found
...@@ -1350,6 +1350,8 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete) ...@@ -1350,6 +1350,8 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts, setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts,
displ2D, displ3D); displ2D, displ3D);
highOrderTools hot (m);
// now we smooth mesh the internal vertices of the faces // now we smooth mesh the internal vertices of the faces
// we do that model face by model face // we do that model face by model face
std::vector<MElement*> bad; std::vector<MElement*> bad;
...@@ -1383,7 +1385,6 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete) ...@@ -1383,7 +1385,6 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
double t2 = Cpu(); double t2 = Cpu();
if (!linear){ if (!linear){
highOrderTools hot (m);
hot.ensureMinimumDistorsion(0.1); hot.ensureMinimumDistorsion(0.1);
checkHighOrderTriangles("final mesh", m, bad, worst); checkHighOrderTriangles("final mesh", m, bad, worst);
} }
......
...@@ -73,8 +73,10 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold) ...@@ -73,8 +73,10 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
} }
// a == 0 -> straight // a == 0 -> straight
// a == 1 -> curved // a == 1 -> curved
int ITER = 1;
while(1){ while(1){
double a = 0.5*(a1+a2); double a = 0.5*(a1+a2);
if (ITER > 10) a = 0.;
for(int i = 0; i < e->getNumVertices(); i++){ for(int i = 0; i < e->getNumVertices(); i++){
MVertex *v = e->getVertex(i); MVertex *v = e->getVertex(i);
v->x() = a * x[i][0] + (1.-a) * X[i][0]; v->x() = a * x[i][0] + (1.-a) * X[i][0];
...@@ -87,6 +89,8 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold) ...@@ -87,6 +89,8 @@ void highOrderTools::ensureMinimumDistorsion(MElement *e, double threshold)
if (dist > 0 && fabs(dist-threshold) < .05)break; if (dist > 0 && fabs(dist-threshold) < .05)break;
if (dist < threshold)a2 = a; if (dist < threshold)a2 = a;
else a1 = a; else a1 = a;
if (a > .99 || a < .01) break;
++ITER;
} }
// printf("element done\n"); // printf("element done\n");
} }
...@@ -612,11 +616,14 @@ double highOrderTools::apply_incremental_displacement (double max_incr, ...@@ -612,11 +616,14 @@ double highOrderTools::apply_incremental_displacement (double max_incr,
// uncurve elements that are invalid // uncurve elements that are invalid
void highOrderTools::ensureMinimumDistorsion (std::vector<MElement*> &all, void highOrderTools::ensureMinimumDistorsion (std::vector<MElement*> &all,
double threshold){ double threshold){
int num = 0;
while(1){ while(1){
double minD; double minD;
std::vector<MElement*> disto; std::vector<MElement*> disto;
getDistordedElements(all, threshold, disto, minD); getDistordedElements(all, threshold, disto, minD);
if (num == disto.size())break;
if (!disto.size())break; if (!disto.size())break;
num = disto.size();
Msg::Info("fixing %d bad curved elements (worst disto %g)",disto.size(),minD); Msg::Info("fixing %d bad curved elements (worst disto %g)",disto.size(),minD);
for (int i=0;i<disto.size();i++){ for (int i=0;i<disto.size();i++){
ensureMinimumDistorsion(disto[i],threshold); ensureMinimumDistorsion(disto[i],threshold);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment