From 0451d2d774aabe0c27733ab0d13fa92566e56e70 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 27 Sep 2012 10:45:52 +0000 Subject: [PATCH] --- Fltk/menuWindow.cpp | 6 ++++-- benchmarks/step/Solid_56.geo | 4 ++++ benchmarks/{bugs => step}/Solid_56.step | 0 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 benchmarks/step/Solid_56.geo rename benchmarks/{bugs => step}/Solid_56.step (100%) diff --git a/Fltk/menuWindow.cpp b/Fltk/menuWindow.cpp index ffd81a5f42..e281f24736 100644 --- a/Fltk/menuWindow.cpp +++ b/Fltk/menuWindow.cpp @@ -1820,8 +1820,10 @@ static void mesh_inspect_cb(Fl_Widget *w, void *data) Msg::Direct(" Rho: %g", ele->rhoShapeMeasure()); Msg::Direct(" Gamma: %g", ele->gammaShapeMeasure()); Msg::Direct(" Eta: %g", ele->etaShapeMeasure()); - double jmin,jmax;ele->scaledJacRange(jmin,jmax); - Msg::Direct(" Scaled Jacobian Range : %g %g",jmin,jmax ); + double jmin, jmax; ele->scaledJacRange(jmin, jmax); + Msg::Direct(" Scaled Jacobian Range: %g %g", jmin, jmax); + Msg::Direct(" Inner / outer radius: %g / %g", + ele->getInnerRadius(), ele->getOuterRadius()); CTX::instance()->mesh.changed = ENT_ALL; drawContext::global()->draw(); FlGui::instance()->showMessages(); diff --git a/benchmarks/step/Solid_56.geo b/benchmarks/step/Solid_56.geo new file mode 100644 index 0000000000..8442152d03 --- /dev/null +++ b/benchmarks/step/Solid_56.geo @@ -0,0 +1,4 @@ +Merge "Solid_56.step"; +Mesh.CharacteristicLengthMax = 3; +Mesh.CharacteristicLengthFromCurvature = 1; + diff --git a/benchmarks/bugs/Solid_56.step b/benchmarks/step/Solid_56.step similarity index 100% rename from benchmarks/bugs/Solid_56.step rename to benchmarks/step/Solid_56.step -- GitLab