mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
112 lines
2.0 KiB
C++
112 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1806 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object blockMeshDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
vertices
|
|
(
|
|
(0 0 0)
|
|
(2 0 0)
|
|
(2 0 0.7)
|
|
(0 0 0.7)
|
|
(0 0.01 0)
|
|
(2 0.01 0)
|
|
(2 0.01 0.7)
|
|
(0 0.01 0.7)
|
|
(4 0 0)
|
|
(4 0 0.7)
|
|
(4 0.01 0.7)
|
|
(4 0.01 0)
|
|
);
|
|
|
|
blocks
|
|
(
|
|
hex (0 1 5 4 3 2 6 7) (200 1 140) simpleGrading (1 1 1)
|
|
hex (1 8 11 5 2 9 10 6) (200 1 140) simpleGrading (1 1 1)
|
|
);
|
|
|
|
edges
|
|
(
|
|
);
|
|
|
|
boundary
|
|
(
|
|
bottom1
|
|
{
|
|
type wall;
|
|
faces
|
|
(
|
|
(0 1 5 4)
|
|
);
|
|
}
|
|
bottom2
|
|
{
|
|
type wall;
|
|
faces
|
|
(
|
|
(1 8 11 5)
|
|
);
|
|
}
|
|
front
|
|
{
|
|
type empty;
|
|
faces
|
|
(
|
|
(0 1 2 3)
|
|
(1 8 9 2)
|
|
);
|
|
}
|
|
back
|
|
{
|
|
type empty;
|
|
faces
|
|
(
|
|
(4 5 6 7)
|
|
(5 11 10 6)
|
|
);
|
|
}
|
|
leftwall
|
|
{
|
|
type patch;
|
|
faces
|
|
(
|
|
(0 4 7 3)
|
|
);
|
|
}
|
|
rightwall
|
|
{
|
|
type patch;
|
|
faces
|
|
(
|
|
(8 11 10 9)
|
|
);
|
|
}
|
|
top
|
|
{
|
|
type wall;
|
|
faces
|
|
(
|
|
(3 2 6 7)
|
|
(2 9 10 6)
|
|
);
|
|
}
|
|
);
|
|
|
|
mergePatchPairs
|
|
(
|
|
);
|
|
|
|
// ************************************************************************* //
|