2D Mesh Tutorial using GMSH

From OpenFOAMWiki
Revision as of 06:37, 11 January 2013 by El Safti (Talk | contribs)

This tutorial was created to show how to generate a 2D mesh for OpenFOAM using the GMSH Open Source Mesh Generator. OpenFOAM by default only works with 3D mesh elements, so some special steps need to be applied to create a 2D mesh. This is not meant to be a tutorial on GMSH or OpenFOAM, but just some useful steps to get the two tools to work together. Note that this uses the GMSH GUI to create the mesh, and requires some modifications of the resulting .geo file.

1 Defining the Geometry in GMSH

1. Open GMSH and create a new file.

2. In a single plane (2D), create the geometry by first creating all points, then combining the points into lines, and then the lines into a surface. These can all be done from the Geometry Menu under Elementary entities->Add->New.

3. Extrude the final surface into 3D by selecting Elementary entities->Extrude->Translate under the Geometry menu. Select Surface, then click the surface in the viewer. This will extend the surface into 3D space. The distance and direction of the extension is defined under the Contextual Geometry Definitions window that appears, under the Translate tab.

4. Now that the shape is 3D, the boundaries can be defined. To define a boundary, go to Physical Groups->Add->Surface from Geometry and add each surface that will be a boundary. Remember the order of the boundaries, as the GMSH GUI will label them with numbers that later need to be changed to a text name for OpenFOAM. For example, if the shape is a square, select the bottom, left, top, right, front, and back faces and individually add them as a Physical Group (If your boundary consists of multiple faces, you can select them together and then add the Physical Group). Later the names will be changed from a number to “bottom”, “left”, “top”, etc... These names will be used in OpenFOAM.

5. The volume of the geometry must also be named. Select Physical Groups->Add->Volume from Geometry and select the volume.

6. The shape should be saved as a .geo file automatically, but if not, save it now. Then open the .geo file in a text editor. Rename the Physical Surfaces to the names that will be used in OpenFOAM as the boundary names. You can also assign internal surfaces to physical surfaces to make internal walls in the geometry. For example (the numbers may be different):

 Physical Surface("front") = {28};
 Physical Surface("back") = {6};
 Physical Surface("bottom") = {27};
 Physical Surface("left") = {15};
 Physical Surface("top") = {19};
 Physical Surface("right") = {23};

Do the same for the volume:

 Physical Volume("internal") = {1};

7. In the .geo file, the Extrude statement must be modified to have a single layer, and then should be recombined. Do this by adding the Layers{1} and Recombine commands to the Extrude command. This ensures that the mesh blocks are created only in 2D and then extended to 3D, and not divided in the 3rd axis. For example:

 Extrude {0, 0, 10} {
   Surface{6};
   Layers{1};
   Recombine;
 }


8. Save the .geo file in the text editor and then reload in GMSH using Reload under the Geometry menu. There should be no errors produced by GMSH.

Below is an example of a 2D mesh .geo file of a simple square:

 Point(1) = {-100, 100, 0, 1e+22};
 Point(2) = {100, 100, 0, 1e+22};
 Point(3) = {100, -100, 0, 1e+22};
 Point(4) = {-100, -100, 0, 1e+22};
 Line(1) = {1, 2};
 Line(2) = {2, 3};
 Line(3) = {3, 4};
 Line(4) = {4, 1};
 Line Loop(6) = {4, 1, 2, 3};
 Plane Surface(6) = {6};
 Physical Volume("internal") = {1};
 Extrude {0, 0, 10} {
  Surface{6};
  Layers{1};
  Recombine;
 }
 Physical Surface("front") = {28};
 Physical Surface("back") = {6};
 Physical Surface("bottom") = {27};
 Physical Surface("left") = {15};
 Physical Surface("top") = {19};
 Physical Surface("right") = {23};

9. Create the mesh in GMSH by selecting 3D from the Mesh menu. You can also do it from the command line: gmsh -3 fileName.geo which will automatically produce a fileName.msh file in the same directory. If everything is set up correctly (via the Extrude modifications), the sides of the 3D mesh should only have straight lines connecting the front face to the back face. This is required for OpenFOAM because for 2D analysis the mesh blocks should only change in two dimensions. OpenFOAM will produce an error if the mesh does not meet this requirement.

The size of the mesh elements can be controlled by setting the Element Size Factor under Mesh in the Options window (select Tools->Options from the main menu). The smaller the number, the smaller the mesh elements. For the changes in element size factor to take place, just go back to Geometry, Reload, then back to Mesh and click 3D.

10. Save the mesh by selecting ‘Save’ from the Mesh menu. This will create a file using the same name as the .geo file, but ending in .msh. This will be used by the OpenFOAM utility gmshToFoam that is shipped with OpenFOAM.

2 Converting the Mesh to OpenFOAM

1. An OpenFOAM case directory with a controlDict file must already be created. Copy the .msh file into the case directory.

2. Open a command console and go to the case directory, and enter gmshToFoam <file.msh>. For example:

 gmshToFoam square.msh

This will create the mesh used by OpenFOAM under the constant/polyMesh directory. If there are any errors, ensure that a proper case directory is set up (refer to OpenFOAM documentation, or use a pre-shipped case directory such as icoFoam or simpleFoam). If the errors indicate no 3D elements exist, or there is another mesh problem, make sure all steps were followed in the GMSH section of this tutorial.

3. Check that the mesh conforms to OpenFOAM standards by running checkMesh from the console.

4. To confirm that the boundaries made it to the OpenFOAM mesh, open the boundary file in the case directory under constant/polyMesh. Each boundary is defined here. For the faces that are along the 3rd dimension, set the type to ‘empty’. For example:

 back
 {
   type          empty;
   nFaces        2858;
   startFace     4217;
 }
 front
 {
   type          empty;
   nFaces        2858;
   startFace     7075;
 }

This will indicate to OpenFOAM that this is a 2D case. Ensure that all other boundaries as defined in the GMSH .geo file are present. There will also be a defaultFaces boundary that should have nFaces = 0 (it is unclear what will happen if nFaces is not 0):

 defaultFaces
 {
   type          patch;
   nFaces        0;
   startFace     10073;
 }

5. To generate an internal wall you need to remove the zero sized boundary from "constant/polyMesh/boundary" and add two zero sized patches at the end of the file named internalWallMaster and internalWallSlave and update the total number of patches then use splitMesh to cut the mesh at the internalWall. If you have more than one internal wall use splitMeshWithSets. More details can be found in Howto importing fluent mesh with internal walls

6. The 2D mesh is now ready to be used by OpenFOAM. Be sure that the boundaries names in the initial conditions files (for example p, U, etc...) match those if the boundary file. For the empty faces (3rd dimension), set the boundary type to ‘empty’ in these files.

7. If all went well, OpenFOAM should be able to use the new mesh for a 2D case. If things don’t go well... OpenFOAM will let you know.