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