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/incompressible/simpleFoam/pitzDaily3Blocks/constant/polyMesh/blockMeshDict

127 lines
2.3 KiB
Text
Raw Normal View History

2010-11-24 20:48:09 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2015-05-17 13:55:59 +00:00
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
2010-11-24 20:48:09 +00:00
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.001;
2010-11-24 20:48:09 +00:00
vertices
(
(-20.6 0 -0.5)
(-20.6 25.4 -0.5)
(0 -25.4 -0.5)
(0 0 -0.5)
(0 25.4 -0.5)
(206 -25.4 -0.5)
(206 25.4 -0.5)
(290 -16.6 -0.5)
(290 16.6 -0.5)
(-20.6 0 0.5)
(-20.6 25.4 0.5)
(0 -25.4 0.5)
(0 0 0.5)
(0 25.4 0.5)
(206 -25.4 0.5)
(206 25.4 0.5)
(290 -16.6 0.5)
(290 16.6 0.5)
);
2010-11-24 20:48:09 +00:00
blocks
(
hex (0 3 4 1 9 12 13 10) (18 30 1) simpleGrading (1 2 1)
hex (2 5 6 4 11 14 15 13) (180 60 1) simpleGrading (1 2 1)
hex (5 7 8 6 14 16 17 15) (30 60 1) simpleGrading (1 2 1)
);
2010-11-24 20:48:09 +00:00
edges
(
);
boundary
(
inlet
{
type patch;
faces
(
(0 9 10 1)
);
}
outlet
{
type patch;
faces
(
(8 17 16 7)
);
}
upperWall
{
type wall;
faces
(
(1 10 13 4)
(4 13 15 6)
(6 15 17 8)
);
}
lowerWall
{
type wall;
faces
(
(7 16 14 5)
(5 14 11 2)
);
}
lowerWallInterface
{
type wall;
faces
(
(2 11 13 4)
);
}
lowerWallInlet
{
type wall;
faces
(
(3 12 9 0)
);
}
interface
{
type patch;
faces
(
(4 13 12 3)
);
}
);
mergePatchPairs
(
( lowerWallInterface interface )
);
// ************************************************************************* //