initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / stressAnalysis / solidEquilibriumDisplacementFoam / beamEndLoad / 0 / D
blob5e3af9404b4c1e0a58f9f838cd93463db2727df0
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     topSurface
24     {
25         type            tractionDisplacement;
26         traction        uniform (0 0 0);
27         pressure        uniform 0;
28         value           uniform (0 0 0);
29     }
31     bottomSurface
32     {
33         type            tractionDisplacement;
34         traction        uniform (0 0 0);
35         pressure        uniform 0;
36         value           uniform (0 0 0);
37     }
39     fixedEnd
40     {
41         type            fixedValue;
42         value           uniform (0 0 0);
43     }
45     tractionEnd
46     {
47         type            tractionDisplacement;
48         traction        uniform (0 10000 0);
49         pressure        uniform 0;
50         value           uniform (0 0 0);
51     }
53     defaultFaces
54     {
55         type                empty;
56     }
59 // ************************************************************************* //