Mesh Generation for 3D Axisymmetric Problems

From OpenFOAMWiki
Revision as of 15:12, 29 September 2011 by Drrbradford (Talk | contribs)

The following is a brief summary of how to create a three-dimensional axisymmetric mesh. It is based on my limited experience using OF2.0 to build a hemispherical mesh which is then solved with simpleFoam or pisoFoam. This may be of interest for people looking at axisymmetric geometries at non-zero angles of incidence.

1. Build a quasi two dimensional mesh (i.e. one that is a single cell deep) of the plane which you would like to revolve to form the three dimensional mesh. An example is shown in the first figure. For this mesh, the front and top edges of the domain are defined as the inlet and the rear (rightmost vertical edge) is the outlet.


2. Make sure the front and back faces have different names. Let's call them <front> and <back> for now.
3. Now use the extrudeMesh function to sweep the plane to create a hemisphere. To do this type extrudeMesh in the command line just like any other openFOAM application.

The options for the extrudeMesh are specified in the extrudeMeshDict file. An example is below. Some important parameters:
nLayers N; creates N cells in the azimuthal/circumferential direction.
axisPt (x y z); defines a point on the axis of symmetry.
axis (X Y Z); defines the vector which is coincident with the axis of symmetry.
angle A; sweeps the mesh through A degrees (set to 360 for sully axisymmetric problem).

FoamFile
{

   version     2.0;
format ascii;
class dictionary;
object extrudeMeshDict;

}

constructFrom patch;
sourceCase ;
sourcePatches (<front>);
exposedPatchName <back>;
extrudeModel wedge;
mergeFaces false;
nLayers 180;
expansionRatio 1.0;
wedgeCoeffs
{

   axisPt      (0.55 0 0);
axis (1 0 0);
angle 360;

}


4. Make sure <front> and <back> are defined in initial conditions ~/0/U, p, k etc.
5. Run the stitchMesh with the perfect option implemented:
stitchMesh <front> <back> -perfect

6. The new mesh and boundary conditions are created and stored in ~/1/. An example of the resulting mesh can be seen in
alt text

7. Replace the ~/constant/polymesh with the new polymesh directory created in ~/1/.
8. Delete the entries for <front> and <back> from the ~/constant/boundary file and reduce the number of boundary conditions by two. For example:

FoamFile
{

   version     2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;

}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

5
(
<front> {...}
<back>{...}
Inlet . . .

)


Becomes

FoamFile
{

   version     2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;

}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

3
(
Inlet . . .

)


9. Check all your other boundaries are set correctly (inletOutlet, wall etc) then solve like normal.
--Drrbradford 16:53, 29 September 2011 (CEST)