Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / solidMechanics / elasticSolidFoam / bimaterialPlate / 0 / U
blob126aeb1e82f7ab8a9e815a78fe54a2b1c96d0583
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  | For copyright notice see file Copyright         |
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     front
25     {
26         type            empty;
27     }
28     back
29     {
30         type            empty;
31     }
32     left
33     {
34         type            solidTraction;
35         traction        uniform ( 0 0 0 );
36         pressure        uniform 0;
37         value           uniform (0 0 0);
38     }
39     bottom
40     {
41         type            fixedDisplacement;
42         value           uniform (0 0 0);
43     }
44     right
45     {
46         type            solidTraction;
47         traction        uniform ( 0 0 0 );
48         pressure        uniform 0;
49         value           uniform (0 0 0);
50     }
51     top
52     {
53         type            timeVaryingFixedDisplacement;
54         outOfBounds     clamp;
55         fileName        "$FOAM_CASE/constant/timeVsDisp";
56         value           uniform (0 0 0);
57     }
61 // ************************************************************************* //