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

94 lines
1.9 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 |
2013-12-11 23:41:18 +00:00
| \\ / O peration | Version: 3.0 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ 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
(
);
2010-11-24 20:48:09 +00:00
patches
(
2010-11-24 20:48:09 +00:00
patch inlet
(
(0 9 10 1)
)
2010-11-24 20:48:09 +00:00
patch outlet
(
(8 17 16 7)
)
2010-11-24 20:48:09 +00:00
wall upperWall
(
(1 10 13 4)
(4 13 15 6)
(6 15 17 8)
)
wall lowerWall
(
(7 16 14 5)
(5 14 11 2)
)
wall lowerWallInterface
(
(2 11 13 4)
)
wall lowerWallInlet
(
(3 12 9 0)
)
2010-11-24 20:48:09 +00:00
patch interface
(
(4 13 12 3)
)
);
mergePatchPairs
(
( lowerWallInterface interface )
);
// ************************************************************************* //