Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / MRFSimpleFoam / axialTurbine_ggi / 0_orig / U
blob80f9a721627bc980d3396835d904f8fc0d4ad5f8
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 (0 0 -1);
21 boundaryField
23     GVINLET
24     {
25         type            fixedValue;
26         value           uniform (0 0 -1);
27     }
28     GVOUTLET
29     {
30         type            ggi;
31     }
32     GVCYCLIC
33     {
34         type            cyclic;
35     }
36     GVBLADE
37     {
38         type            fixedValue;
39         value           uniform (0 0 0);
40     }
41     GVHUB
42     {
43         type            fixedValue;
44         value           uniform (0 0 0);
45     }
46     GVSHROUD
47     {
48         type            fixedValue;
49         value           uniform (0 0 0);
50     }
51     RUINLET
52     {
53         type            ggi;
54     }
55     RUOUTLET
56     {
57         type            ggi;
58     }
59     RUCYCLIC1
60     {
61         type            cyclicGgi;
62     }
63     RUCYCLIC2
64     {
65         type            cyclicGgi;
66     }
67     RUBLADE
68     {
69         type            fixedValue;
70         value           uniform (0 0 0);
71     }
72     RUHUB
73     {
74         type            fixedValue;
75         value           uniform (0 0 0);
76     }
77     RUSHROUD
78     {
79         type            fixedValue;
80         value           uniform (0 0 0);
81     }
82     DTINLET
83     {
84         type            ggi;
85     }
86     DTOUTLET
87     {
88         type            zeroGradient;
89     }
90     DTCYCLIC1
91     {
92         type            cyclicGgi;
93     }
94     DTCYCLIC2
95     {
96         type            cyclicGgi;
97     }
98     DTHUB
99     {
100         type            fixedValue;
101         value           uniform (0 0 0);
102     }
103     DTSHROUD
104     {
105         type            fixedValue;
106         value           uniform (0 0 0);
107     }
110 // ************************************************************************* //