Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / stressAnalysis / solidEquilibriumDisplacementFoam / beamEndLoad / constant / polyMesh / blockMeshDict
blob5d715ab5ed6a9cb7caac731122f26ec39d687026
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1;
19 vertices
22     (0 0 0)
23     (30 0 0)
24     (30 1 0)
25     (0 1 0)
26     (0 0 1)
27     (30 0 1)
28     (30 1 1)
29     (0 1 1)
33 blocks
35     hex (0 1 2 3 4 5 6 7) (6 2 1) simpleGrading (1.0 1.0 1.0)
38 edges
42 boundary
44     topSurface
45     {
46         type patch;
47         faces
48         (
49             (3 7 6 2)
50         );
51     }
53     bottomSurface
54     {
55         type patch;
56         faces
57         (
58             (4 0 1 5)
59         );
60     }
62     fixedEnd
63     {
64         type patch;
65         faces
66         (
67             (0 4 7 3)
68         );
69     }
71     tractionEnd
72     {
73         type patch;
74         faces
75         (
76             (1 2 6 5)
77         );
78     }
81 mergePatchPairs
85 // ************************************************************************* //