Forward compatibility: flex
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / mixingPlaneAxial / 0 / U
blobfa51b2e330286c8b6324a31a10162f3fe9ef034c
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     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 1 -1 0 0 0 0];
20 internalField uniform (0 0 0);
22 boundaryField
24     upstreamMixingPlanePatch
25     {
26         type mixingPlane;
27     }
28     downstreamMixingPlanePatch
29     {
30         type mixingPlane;
31     }
32     upstreamPerio1
33     {
34         type cyclicGgi;
35     }
36     upstreamPerio2
37     {
38         type cyclicGgi;
39     }
40     downstreamPerio1
41     {
42         type cyclicGgi;
43     }
44     downstreamPerio2
45     {
46         type cyclicGgi;
47     }
48     downstreamWall
49     {
50         type symmetryPlane;
51     }
52     upstreamWall
53     {
54         type symmetryPlane;
55     }
56     inflow
57     {
58         type            surfaceNormalFixedValue;
59         refValue        uniform -10;
60         value           uniform (0 0 0);
61     }
62     outflow
63     {
64         type inletOutlet;
65         inletValue      uniform (0 0 0);
66         value           uniform (0 0 0);
67     }
70 // ************************************************************************* //