<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none"><!--P{margin-top:0;margin-bottom:0;} .ms-cui-menu {background-color:#ffffff;border:1px rgb(171, 171, 171) solid;font-family:'Segoe UI WPC','Segoe UI',Tahoma,'Microsoft Sans Serif',Verdana,sans-serif;font-size:10pt;color:rgb(51, 51, 51);} .ms-cui-menusection-title {display:none;} .ms-cui-ctl {vertical-align:text-top;text-decoration:none;color:rgb(51, 51, 51);} .ms-cui-ctl-on {background-color:rgb(223, 237, 250);opacity: 0.8;} .ms-cui-img-cont-float {display:inline-block;margin-top:2px} .ms-cui-smenu-inner {padding-top:0px;} .ms-owa-paste-option-icon {margin: 2px 4px 0px 4px;vertical-align:sub;padding-bottom: 2px;display:inline-block;} .ms-rtePasteFlyout-option:hover {background-color:rgb(223, 237, 250) !important;opacity:1 !important;} .ms-rtePasteFlyout-option {padding:8px 4px 8px 4px;outline:none;} .ms-cui-menusection {float:left; width:85px;height:24px;overflow:hidden}.wf {speak:none; font-weight:normal; font-variant:normal; text-transform:none; -webkit-font-smoothing:antialiased; vertical-align:middle; display:inline-block;}.wf-family-owa {font-family:'o365Icons'}@font-face {  font-family:'o365IconsIE8';  src:url('prem/15.0.913.19/resources/styles/office365icons.ie8.eot?#iefix') format('embedded-opentype'),         url('prem/15.0.913.19/resources/styles/office365icons.ie8.woff') format('woff'),         url('prem/15.0.913.19/resources/styles/office365icons.ie8.ttf') format('truetype');  font-weight:normal;  font-style:normal;}@font-face {  font-family:'o365IconsMouse';  src:url('prem/15.0.913.19/resources/styles/office365icons.mouse.eot?#iefix') format('embedded-opentype'),         url('prem/15.0.913.19/resources/styles/office365icons.mouse.woff') format('woff'),         url('prem/15.0.913.19/resources/styles/office365icons.mouse.ttf') format('truetype');  font-weight:normal;  font-style:normal;}.wf-family-owa {font-family:'o365IconsMouse'}.ie8 .wf-family-owa {font-family:'o365IconsIE8'}.ie8 .wf-owa-play-large:before {content:'\e254';}.notIE8 .wf-owa-play-large:before {content:'\e054';}.ie8 .wf-owa-play-large {color:#FFFFFF/*$WFWhiteColor*/;}.notIE8 .wf-owa-play-large {border-color:#FFFFFF/*$WFWhiteColor*/; width:1.4em; height:1.4em; border-width:.1em; border-style:solid; border-radius:.8em; text-align:center; box-sizing:border-box; -moz-box-sizing:border-box; padding:0.1em; color:#FFFFFF/*$WFWhiteColor*/;}.ie8 .wf-size-play-large {width:40px; height:40px; font-size:30px}.notIE8 .wf-size-play-large {width:40px; height:40px; font-size:30px}--></style>
</head>
<body dir="ltr">
<div style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Dear gmsh-users,</p>
<p><br>
</p>
<p>I ran into a problem with second order meshing of a Ruled Surface. If this surface is oriented along the x axis, I get a bad distortion. If I orient the same surface along the y axis, this problem does not occure. First order meshing work fine in both cases.<br>
</p>
<p>Is there a difference in the meshing algorithm for both axes?</p>
<p><br>
</p>
<p>An example with the two surfaces oriented along both axis is attached below.</p>
<p><br>
</p>
<p>I would<span> appreciate some hints to get a nice meshing in both directions.</span><br>
</p>
<p><span>Thanks!</span></p>
<p><br>
</p>
<p><span>Best regards,</span></p>
<p><span>Andreas Düdder</span></p>
<p><br>
</p>
<p><br>
</p>
<p><br>
</p>
<p><br>
</p>
<p><br>
</p>
<p>d = 0.025;            <br>
lc =  0.0007;        <br>
r = 0.001;            <br>
l = d/2;            <br>
            <br>
<br>
<br>
//surface parallel to x<br>
c1center = newp; Point(c1center) = {0, 0, 0, lc};<br>
c1_2 = newp; Point(c1_2) = {0, 0,r, lc};<br>
c1_3 = newp; Point(c1_3) = {0, r,0, lc};<br>
circle1_2 = newl; Circle(circle1_2) = {c1_2,c1center,c1_3};<br>
<br>
point_s_2 = newp; Point(point_s_2) = {l, 0, 3*r+0.0004, lc};<br>
point_s_3 = newp; Point(point_s_3) = {l, r, 2*r+0.0004, lc};<br>
<br>
c2center = newp; Point(c2center) = {d, 0, 0, lc};<br>
c2_2 = newp; Point(c2_2) = {d, 0, r, lc};<br>
c2_3 = newp; Point(c2_3) = {d, r, 0, lc};<br>
circle2_2 = newl; Circle(circle2_2) = {c2_2,c2center,c2_3};<br>
    <br>
spline_2 = newl; Spline(spline_2) = {c1_2,point_s_2,c2_2};<br>
spline_3 = newl; Spline(spline_3) = {c1_3,point_s_3,c2_3};<br>
<br>
axial_surface_2_loop = newll; Line Loop(axial_surface_2_loop) = {spline_2,circle2_2,-spline_3,-circle1_2};<br>
axial_surface_2 = news; Ruled Surface(axial_surface_2) = {axial_surface_2_loop};<br>
<br>
<br>
//surface parallel to y;<br>
c1center = newp; Point(c1center) = {0, 0, 2*r, lc};<br>
c1_2 = newp; Point(c1_2) = {0, 0, 3*r, lc};<br>
c1_3 = newp; Point(c1_3) = {r, 0, 2*r, lc};<br>
circle1_2 = newl; Circle(circle1_2) = {c1_2,c1center,c1_3};<br>
<br>
point_s_2 = newp; Point(point_s_2) = {0, l, 5*r+0.0004, lc};<br>
point_s_3 = newp; Point(point_s_3) = {r, l, 4*r+0.0004, lc};<br>
<br>
c2center = newp; Point(c2center) = {0, d, 2*r, lc};<br>
c2_2 = newp; Point(c2_2) = {0, d, 3*r, lc};<br>
c2_3 = newp; Point(c2_3) = {r, d, 2*r, lc};    <br>
circle2_2 = newl; Circle(circle2_2) = {c2_2,c2center,c2_3};<br>
<br>
<br>
spline_2 = newl; Spline(spline_2) = {c1_2,point_s_2,c2_2};<br>
spline_3 = newl; Spline(spline_3) = {c1_3,point_s_3,c2_3};<br>
<br>
axial_surface_2_loop = newll; Line Loop(axial_surface_2_loop) = {spline_2,circle2_2,-spline_3,-circle1_2};    <br>
axial_surface_2 = news; Ruled Surface(axial_surface_2) = {axial_surface_2_loop};<br>
</p>
</div>
</body>
</html>