Le 29/12/2012 06:34, marleson a écrit :
Hi,

I have been trying to build the structured mesh displayed in this link:
pic.twitter.com/rdwmW9cX


it is a square 100 x 100.

could you help me?

thank you!




_______________________________________________
gmsh mailing list
[email protected]
http://www.geuz.org/mailman/listinfo/gmsh
Hello,

Read this file with gmsh and create the mesh.
The result is different from the image, but perhaps it is sufficient for what you want to do with.

Marie-Claire Le Pape.
Point(1) = {0, 0, 0, 1.};
Point(2) = {1, 0, 0, 1.};
Point(3) = {1, 1, 0, 1.};
Point(4) = {0, 1, 0, 1.};
Line(1) = {1, 2};
Line(2) = {2, 3};
Line(3) = {3, 4};
Line(4) = {4, 1};
Line Loop(8) = {-4,-3,-2,-1};
Plane Surface(9) = {8};
//
Transfinite Line {1} = 14 Using Progression 1.;
Transfinite Line {2} = 14 Using Progression 1.;
Transfinite Line {3} = 14 Using Progression 1.;
Transfinite Line {4} = 14 Using Progression 1.;
//
Transfinite Surface {9} Alternate;
//
_______________________________________________
gmsh mailing list
[email protected]
http://www.geuz.org/mailman/listinfo/gmsh

Reply via email to