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/bimaterialPlate/constant/polyMesh/blockMeshDict

99 lines
1.8 KiB
Text
Raw Normal View History

2013-12-11 16:09:41 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
2012-09-11 15:42:55 +00:00
| ========= | |
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 |
2012-09-11 15:42:55 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
2013-12-11 16:09:41 +00:00
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
2012-09-11 15:42:55 +00:00
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
2013-12-11 16:09:41 +00:00
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
);
2013-12-11 16:09:41 +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)
);
2013-12-11 16:09:41 +00:00
edges
2012-09-11 15:42:55 +00:00
(
);
2013-12-11 16:09:41 +00:00
patches
2012-09-11 15:42:55 +00:00
(
2013-12-11 16:09:41 +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
)
2013-12-11 16:09:41 +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
)
2013-12-11 16:09:41 +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
)
2013-12-11 16:09:41 +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
)
2013-12-11 16:09:41 +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
(
);
// ************************************************************************* //