Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / solidMechanics / stressFemFoam / plateHole / 0 / U
blobf7e02b396229353e87cb252d223661f5f397dc08
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       tetPointVectorField;
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            traction;
32         traction        uniform (0 0 0);
33         pressure        uniform -1e+07;
34         value           uniform (0 0 0);
35     }
37     down
38     {
39         type            symmetryPlane;
40     }
42     up
43     {
44         type            traction;
45         traction        uniform (0 0 0);
46         pressure        uniform 0;
47         value           uniform (0 0 0);
48     }
50     hole
51     {
52         type            traction;
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 // ************************************************************************* //