This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/compressible/dbnsFoam/forwardStep/constant/polyMesh/blockMeshDict

86 lines
1.9 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2014-06-01 11:15:18 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2016-06-20 15:00:40 +00:00
| \\ / O peration | Version: 4.0 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
2014-06-01 11:15:18 +00:00
vertices
(
(0 0 -0.05)
(0.6 0 -0.05)
(0 0.2 -0.05)
(0.6 0.2 -0.05)
(3 0.2 -0.05)
(0 1 -0.05)
(0.6 1 -0.05)
(3 1 -0.05)
(0 0 0.05)
(0.6 0 0.05)
(0 0.2 0.05)
(0.6 0.2 0.05)
(3 0.2 0.05)
(0 1 0.05)
(0.6 1 0.05)
(3 1 0.05)
);
2014-06-01 11:15:18 +00:00
blocks
(
// hex (0 1 3 2 8 9 11 10) (48 16 1) simpleGrading (1 1 1)
// hex (2 3 6 5 10 11 14 13) (48 64 1) simpleGrading (1 1 1)
// hex (3 4 7 6 11 12 15 14) (192 64 1) simpleGrading (1 1 1)
//
hex (0 1 3 2 8 9 11 10) (30 10 1) simpleGrading (1 1 1)
hex (2 3 6 5 10 11 14 13) (30 40 1) simpleGrading (1 1 1)
hex (3 4 7 6 11 12 15 14) (120 40 1) simpleGrading (1 1 1)
);
2014-06-01 11:15:18 +00:00
edges
(
);
2014-06-01 11:15:18 +00:00
patches
(
2014-06-01 11:15:18 +00:00
patch inlet
(
(0 8 10 2)
(2 10 13 5)
)
2014-06-01 11:15:18 +00:00
patch outlet
(
(4 7 15 12)
)
2014-06-01 11:15:18 +00:00
symmetryPlane bottom
(
(0 1 9 8)
)
2014-06-01 11:15:18 +00:00
symmetryPlane top
(
(5 13 14 6)
(6 14 15 7)
)
patch obstacle
(
(1 3 11 9)
(3 4 12 11)
)
);
mergePatchPairs
(
);
// ************************************************************************* //