STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / solidMechanics / deprecatedTutorials / stressedFoam / plateHole / 0 / U
blob25ba043cf4f177ccc2738ed26a11a1d1828a44c2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 1 0 0 0 0 0];
20 internalField   uniform (0 0 0);
22 boundaryField
24     left
25     {
26         type            symmetryPlane;
27     }
29     right
30     {
31         type            tractionDisplacement;
32         traction        uniform (10000 0 0);
33         pressure        uniform 0;
34         value           uniform (0 0 0);
35     }
37     down
38     {
39         type            symmetryPlane;
40     }
42     up
43     {
44         type            tractionDisplacement;
45         traction        uniform (0 0 0);
46         pressure        uniform 0;
47         value           uniform (0 0 0);
48     }
50     hole
51     {
52         type            tractionDisplacement;
53         traction        uniform (0 0 0);
54         pressure        uniform 0;
55         value           uniform (0 0 0);
56     }
58     frontAndBack
59     {
60         type            empty;
61     }
64 // ************************************************************************* //