Upgrade case file headers
[foam-extend-3.2.git] / tutorials / solidMechanics / elasticNonLinTLSolidFoam / nonLinBlock / constant / polyMesh / blockMeshDict
blobc9df1b26e6c92fc79e903b4731c7add2eade7653
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant/polyMesh";
14     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1;
20 vertices
22  (0 0 0)
23  (1 0 0)
24  (1 1 0)
25  (0 1 0)
26  (0 0 0.1)
27  (1 0 0.1)
28  (1 1 0.1)
29  (0 1 0.1)
32 blocks
34  hex (0 1 2 3 4 5 6 7) (10 10 1) simpleGrading (1 1 1)
37 edges
41 patches
43  patch top
44  (
45   (2 3 7 6)
46   )
48  symmetryPlane left
49  (
50   (3 0 4 7)
51   )
53  patch right
54  (
55   (1 2 6 5)
56   )
58  symmetryPlane bottom
59  (
60   (0 1 5 4)
61   )
63  empty frontAndBack
64  (
65   (0 1 2  3)
66   (7 6 5 4)
67   )
68  );
70 mergePatchPairs
74 // ************************************************************************* //