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/solidMechanics/elasticSolidFoam/bimaterialCase/constant/polyMesh/blockMeshDict

107 lines
2 KiB
Text
Raw Normal View History

2012-09-11 15:42:55 +00:00
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root "";
case "";
instance "";
local "";
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
2012-09-11 15:42:55 +00:00
(
(0 0 0) //0
(1 0 0) //1
(0 0.5 0) //2
(1 0.5 0) //3
(0 0.51 0) //4
(1 0.51 0) //5
(0 1 0) //6
(1 1 0) //7
(0 0 0.1) //8
(1 0 0.1) //9
(0 0.5 0.1) //10
(1 0.5 0.1) //11
(0 0.51 0.1) //12
(1 0.51 0.1) //13
(0 1 0.1) //14
(1 1 0.1) //15
2012-09-11 15:42:55 +00:00
);
blocks
2012-09-11 15:42:55 +00:00
(
hex ( 0 1 3 2 8 9 11 10) (100 50 1) simpleGrading (1 1 1)
hex ( 2 3 5 4 10 11 13 12) (100 1 1) simpleGrading (1 1 1)
hex ( 4 5 7 6 12 13 15 14) (100 49 1) simpleGrading (1 1 1)
);
edges
2012-09-11 15:42:55 +00:00
(
);
patches
2012-09-11 15:42:55 +00:00
(
empty front
2012-09-11 15:42:55 +00:00
(
( 0 1 3 2)
( 2 3 5 4)
( 4 5 7 6)
2012-09-11 15:42:55 +00:00
)
empty back
2012-09-11 15:42:55 +00:00
(
( 8 9 11 10)
(10 11 13 12)
(12 13 15 14)
2012-09-11 15:42:55 +00:00
)
patch left
2012-09-11 15:42:55 +00:00
(
( 0 2 10 8)
( 2 4 12 10)
( 4 6 14 12)
2012-09-11 15:42:55 +00:00
)
2012-09-11 15:42:55 +00:00
patch bottom
(
( 0 1 9 8)
2012-09-11 15:42:55 +00:00
)
2012-09-11 15:42:55 +00:00
patch right
(
( 1 3 11 9)
( 3 5 13 11)
( 5 7 15 13)
2012-09-11 15:42:55 +00:00
)
2012-09-11 15:42:55 +00:00
patch top
(
( 6 7 15 14)
2012-09-11 15:42:55 +00:00
)
);
mergePatchPairs
(
);
// ************************************************************************* //