Difference between revisions of "Mesh Generation for 3D Axisymmetric Problems"

From OpenFOAMWiki
Line 42: Line 42:
 
8. Delete the entries for <front> and <back> from the ~/constant/boundary file and reduce the number of boundary conditions by two. For example:<br /><br />
 
8. Delete the entries for <front> and <back> from the ~/constant/boundary file and reduce the number of boundary conditions by two. For example:<br /><br />
  
<code>FoamFile
+
<code>FoamFile<br />
{
+
{<br />
     version    2.0;
+
     version    2.0;<br />
     format      ascii;
+
     format      ascii;<br />
     class      polyBoundaryMesh;
+
     class      polyBoundaryMesh;<br />
     location    "constant/polyMesh";
+
     location    "constant/polyMesh";<br />
     object      boundary;
+
     object      boundary;<br />
}
+
}<br />
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //<br />
 +
<br />
 +
'''5'''<br />
 +
(<br />
 +
'''<front>''' {...}<br />
 +
'''<back>'''{...}<br />
 +
Inlet . . .<br />
 +
<br />
 +
)<br />
 +
</code><br /><br />
  
5
+
Becomes <br /><br />
(
+
<front> {...}
+
<back>{...}
+
Inlet . . .
+
  
)
+
<code>FoamFile<br />
</nowiki>
+
{<br />
 
+
     version    2.0;<br />
Becomes
+
     format      ascii;<br />
 
+
     class      polyBoundaryMesh;<br />
<nowiki>FoamFile
+
     location    "constant/polyMesh";<br />
{
+
     object      boundary;<br />
     version    2.0;
+
}<br />
     format      ascii;
+
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //<br />
     class      polyBoundaryMesh;
+
<br />
     location    "1/polyMesh";
+
'''3'''<br />
     object      boundary;
+
(<br />
}
+
Inlet . . . <br />
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
<br />
 
+
)<br />
'''3'''
+
(
+
Inlet . . .  
+
 
+
)
+
 
</code><br /><br />
 
</code><br /><br />
  
 
9. Check all your other boundaries are set correctly (inletOutlet, wall etc) then solve like normal.<br />
 
9. Check all your other boundaries are set correctly (inletOutlet, wall etc) then solve like normal.<br />
 
--[[User:Drrbradford|Drrbradford]] 16:53, 29 September 2011 (CEST)
 
--[[User:Drrbradford|Drrbradford]] 16:53, 29 September 2011 (CEST)

Revision as of 15:00, 29 September 2011

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.
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/.
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)