openfoam/tutorials/mesh/snappyHexMesh/flange/constant/polyMesh/blockMeshDict
mattijs 9021e777e0 ENH: flange feature edge tutorial:
- slightly bigger display so re-patching does not pick up original outside
- additional refinement at inlet since 2 cells across is too few occasionally
- changed feature angle to pick up more edges
2011-04-06 19:04:17 +01:00

54 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
( -0.03 -0.03 -0.03)
( 0.03 -0.03 -0.03)
( 0.03 0.03 -0.03)
( -0.03 0.03 -0.03)
( -0.03 -0.03 0.01)
( 0.03 -0.03 0.01)
( 0.03 0.03 0.01)
( -0.03 0.03 0.01)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (15 15 9) simpleGrading (1 1 1)
);
edges
(
);
patches
(
patch allBoundary
(
(3 7 6 2)
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
(0 3 2 1)
(4 5 6 7)
)
);
// ************************************************************************* //