<div dir="ltr">Hello all,<div><br></div><div>I am very new to gmsh, and try to use some of the gmsh functionality to help with my project. I would like to create a structural mesh on a half ellipse. I have tried to use the transfinite the line, and surface, and then recombine it. However, the non-orthogonality of the mesh is even higher than the unstructured triangular mesh, possibly because there is only very short gap between my boundary, which cause my mesh is very "skewed". </div><div><br></div><div>I have attached my code below, and it is very short.  I wonder does anyone has some idea on creating structural mesh in this geometry ?  My initial idea is that have the rectangular mesh all the way down except the bottom that attach with the ellipse boundary. However, I did not find any information on how am I able to do that. Any suggestion is appreciated. Thank you!</div><div><br></div><div><div>lc = 1e-2;</div><div>Point(1) = {-1, 0, 0, lc};</div><div>Point(2) = {0, 0, 0, lc};</div><div>Point(3) = {1, 0, 0, lc};</div><div>Point(4) = {0,-0.1,0,lc};</div><div>Ellipse(5) = {1,2,2,4};</div><div>Ellipse(6) = {4,2,2,3};</div><div>Line(7) = {3,2};</div><div>Line(8) = {2,1};</div><div>Line Loop(9) = {6,7, 8,5};</div><div>Transfinite Line "*" = 50;</div><div>Plane Surface (11) = {9};</div><div>Transfinite Surface "*";</div><div>Recombine Surface "*";</div><div>Physical Surface("flowing_layer") = {11};</div><div>Physical Line("Bottom_Left") = {5};</div><div>Physical Line("Bottom_Right") = {6};</div></div><div><br></div><div><br></div><div>Best,</div><div><br></div><div>Zhekai</div></div>