74 lines
1.4 KiB
C++
74 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 4.0 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object blockMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
convertToMeters 1;
|
|
|
|
vertices
|
|
(
|
|
(-0.8 -0.5 -0.5) //0
|
|
(1.2 -0.5 -0.5) //1
|
|
(1.2 0.5 -0.5) //2
|
|
(-0.8 0.5 -0.5) //3
|
|
|
|
(-0.8 -0.5 0.5) //4
|
|
(1.2 -0.5 0.5) //5
|
|
(1.2 0.5 0.5) //6
|
|
(-0.8 0.5 0.5) //7
|
|
);
|
|
|
|
blocks
|
|
(
|
|
hex (0 1 2 3 4 5 6 7) (80 40 40) simpleGrading (1 1 1)
|
|
);
|
|
|
|
edges
|
|
(
|
|
);
|
|
|
|
patches
|
|
(
|
|
wall top
|
|
(
|
|
(3 7 6 2)
|
|
)
|
|
patch inlet
|
|
(
|
|
(0 4 7 3)
|
|
)
|
|
patch outlet
|
|
(
|
|
(2 6 5 1)
|
|
)
|
|
wall bottom
|
|
(
|
|
(1 5 4 0)
|
|
)
|
|
wall back
|
|
(
|
|
(0 3 2 1)
|
|
)
|
|
wall front
|
|
(
|
|
(4 5 6 7)
|
|
)
|
|
);
|
|
|
|
mergePatchPairs
|
|
(
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|