initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / stressAnalysis / solidDisplacementFoam / plateHole / 0 / D
blob0b4e256c715754d7327c9318e59883dac2602560
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volVectorField;
13     object      D;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 0 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     left
24     {
25         type            symmetryPlane;
26     }
27     right
28     {
29         type            tractionDisplacement;
30         traction        uniform ( 10000 0 0 );
31         pressure        uniform 0;
32         value           uniform (0 0 0);
33     }
34     down
35     {
36         type            symmetryPlane;
37     }
38     up
39     {
40         type            tractionDisplacement;
41         traction        uniform ( 0 0 0 );
42         pressure        uniform 0;
43         value           uniform (0 0 0);
44     }
45     hole
46     {
47         type            tractionDisplacement;
48         traction        uniform ( 0 0 0 );
49         pressure        uniform 0;
50         value           uniform (0 0 0);
51     }
52     frontAndBack
53     {
54         type            empty;
55     }
58 // ************************************************************************* //