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/stressAnalysis/contactStressFoam/ballAndBrick/constant/polyMesh/blockMeshDict

102 lines
1.9 KiB
Text
Raw Normal View History

2010-11-24 20:48:09 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2010-11-24 20:48:09 +00:00
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: 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.01;
2010-11-24 20:48:09 +00:00
vertices
(
(-1 -0.5 -0.05)
(1 -0.5 -0.05)
(-1 0 -0.05)
(1 0 -0.05)
(-1 0.1 -0.05)
(1 0.1 -0.05)
(-1 0.5 -0.05)
(1 0.5 -0.05)
(-1 -0.5 0.05)
(1 -0.5 0.05)
(-1 0 0.05)
(1 0 0.05)
(-1 0.1 0.05)
(1 0.1 0.05)
(-1 0.5 0.05)
(1 0.5 0.05)
);
2010-11-24 20:48:09 +00:00
blocks
(
hex (0 1 3 2 8 9 11 10) (20 10 1) simpleGrading (1 1 1)
hex (4 5 7 6 12 13 15 14) (20 10 1) simpleGrading (1 1 1)
);
2010-11-24 20:48:09 +00:00
edges
(
arc 4 5 (0 0 -0.05)
arc 12 13 (0 0 0.05)
);
2010-11-24 20:48:09 +00:00
patches
(
2010-11-24 20:48:09 +00:00
symmetryPlane bottomBrickDown
(
(0 1 9 8)
)
2010-11-24 20:48:09 +00:00
patch bottomBrickUp
(
(2 10 11 3)
)
2010-11-24 20:48:09 +00:00
patch topBrickDown
(
(4 5 13 12)
)
2010-11-24 20:48:09 +00:00
patch topBrickUp
(
(6 14 15 7)
)
2010-11-24 20:48:09 +00:00
patch bottomBrickLeft
(
(0 8 10 2)
)
2010-11-24 20:48:09 +00:00
patch bottomBrickRight
(
(1 3 11 9)
)
2010-11-24 20:48:09 +00:00
patch topBrickLeft
(
(4 12 14 6)
)
2010-11-24 20:48:09 +00:00
patch topBrickRight
(
(5 7 15 13)
)
2010-11-24 20:48:09 +00:00
empty back
(
(0 2 3 1)
(4 6 7 5)
)
2010-11-24 20:48:09 +00:00
empty front
(
(8 9 11 10)
(12 13 15 14)
)
);
mergePatchPairs
(
);
// ************************************************************************* //