carmelog's picture
Add files using upload-large-folder tool
6497c7e verified
raw
history blame
1.31 kB
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2206 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
scale 1;
vertices
(
(-1 -3.5 -1)
(44 -3.5 -1)
(44 1 -1)
(-1 1 -1)
(-1 -3.5 3.5)
(44 -3.5 3.5)
(44 1 3.5)
(-1 1 3.5)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (300 30 30) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
emptyWalls
{
type wall;
faces
(
(0 1 2 3)
(4 5 6 7)
(0 1 5 4)
(2 3 7 6)
(1 2 6 5)
(3 0 4 7)
);
}
);
// ************************************************************************* //