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/multiSolver/multiSolverDemo/teeFitting2d/constant/polyMesh/blockMeshDict

111 lines
2.1 KiB
Text
Raw Normal View History

2011-06-20 00:52:40 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2014-06-01 11:15:18 +00:00
| \\ / O peration | Version: 3.1 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
2011-06-20 00:52:40 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.1;
2013-12-11 16:09:41 +00:00
vertices
2011-06-20 00:52:40 +00:00
(
(0 0 0)
(1.5 0 0)
(1.5 1 0)
(0 1 0)
(2.5 0 0)
(4 0 0)
(4 1 0)
(2.5 1 0)
(1.5 2.5 0)
(2.5 2.5 0)
(0 0 0.1)
(1.5 0 0.1)
(1.5 1 0.1)
(0 1 0.1)
(2.5 0 0.1)
(4 0 0.1)
(4 1 0.1)
(2.5 1 0.1)
(1.5 2.5 0.1)
(2.5 2.5 0.1)
);
2013-12-11 16:09:41 +00:00
blocks
2011-06-20 00:52:40 +00:00
(
hex (0 1 2 3 10 11 12 13) (20 20 1) simpleGrading (1 1 1)
hex (1 4 7 2 11 14 17 12) (20 20 1) simpleGrading (1 1 1)
hex (4 5 6 7 14 15 16 17) (20 20 1) simpleGrading (1 1 1)
hex (2 7 9 8 12 17 19 18) (20 20 1) simpleGrading (1 1 1)
);
2013-12-11 16:09:41 +00:00
edges
2011-06-20 00:52:40 +00:00
(
);
boundary
2011-06-20 00:52:40 +00:00
(
steetWalls
{
type wall;
faces
(
(1 0 10 11)
(4 1 11 14)
(5 4 14 15)
(2 3 13 12)
(6 7 17 16)
2014-06-01 16:29:30 +00:00
);
}
branchWalls
{
type wall;
faces
(
(8 2 12 18)
(7 9 19 17)
);
}
westStreet
{
type patch;
faces
(
(3 0 10 13)
);
}
eastStreet
{
type patch;
faces
(
(5 6 16 15)
);
}
northBranch
{
type patch;
faces
(
(9 8 18 19)
);
}
2011-06-20 00:52:40 +00:00
);
2013-12-11 16:09:41 +00:00
mergePatchPairs
2011-06-20 00:52:40 +00:00
(
);
// ************************************************************************* //