Skip to content
Snippets Groups Projects
Commit 49003e83 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 53836fa9
No related branches found
No related tags found
No related merge requests found
...@@ -938,8 +938,8 @@ static void checkHighOrderTriangles(GModel *m, std::vector<MElement*> &bad, doub ...@@ -938,8 +938,8 @@ static void checkHighOrderTriangles(GModel *m, std::vector<MElement*> &bad, doub
if (disto < 0) bad.push_back(t); if (disto < 0) bad.push_back(t);
} }
} }
if (minJGlob > 0) Msg::Info("Worst Element Smoothness %12.5E", minJGlob); if (minJGlob > 0) Msg::Info("Worst Element Smoothness %g", minJGlob);
else Msg::Warning("Worst Element Smoothness %12.5E", minJGlob); else Msg::Warning("Worst Element Smoothness %g", minJGlob);
} }
extern double mesh_functional_distorsion(MTriangle *t, double u, double v); extern double mesh_functional_distorsion(MTriangle *t, double u, double v);
...@@ -1017,7 +1017,7 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete) ...@@ -1017,7 +1017,7 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete)
int nPts = order - 1; int nPts = order - 1;
Msg::StatusBar(1, true, "Generating High Order Nodes (q = %d) ...", order); Msg::StatusBar(1, true, "Meshing order %d...", order);
double t1 = Cpu(); double t1 = Cpu();
// first, make sure to remove any existsing second order vertices/elements // first, make sure to remove any existsing second order vertices/elements
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment