Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / pimpleDyMFoam / movingCylinders / 0 / U
blob4b3fafd54507267b385ad0de5b962fcc9ccc980f
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       volVectorField;
13     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (1 0 0);
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           uniform (1 0 0);
27     }
28     outlet
29     {
30         type            inletOutlet;
31         inletValue      uniform (0 0 0);
32         value           uniform (1 0 0);
33     }
34     bottom
35     {
36         type            fixedValue;
37         value           uniform (0 0 0);
38     }
39     top
40     {
41         type            fixedValue;
42         value           uniform (0 0 0);
43     }
44     firstCyl
45     {
46         type            movingWallVelocity;
47         value           uniform (0 0 0);
48     }
49     secondCyl
50     {
51         type            movingWallVelocity;
52         value           uniform (0 0 0);
53     }
54     frontIn
55     {
56         type            ggi;
57     }
58     frontOut
59     {
60         type            ggi;
61     }
62     middleIn
63     {
64         type            ggi;
65     }
66     middleOut
67     {
68         type            ggi;
69     }
70     backIn
71     {
72         type            ggi;
73     }
74     backOut
75     {
76         type            ggi;
77     }
78     defaultFaces
79     {
80         type            empty;
81     }
84 // ************************************************************************* //