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
Dominik Christ b28965db7b Changed some tutorials
Changed some more tutorials

Changed a few more tutorials

Changed even  more tutorials
2014-05-30 18:24:36 +01:00

126 lines
2.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 3.0 |
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.001;
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)
);
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)
);
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 )
);
// ************************************************************************* //