Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / mixingPlaneAxial / 0 / p
blob222ede1b2db2b4df824051f3e3ee697408d6cdad
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      p;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions [ 0 2 -2 0 0 0 0 ];
20 internalField uniform 0;
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     upstreamPerio1
41     {
42         type cyclicGgi;
43     }
44     upstreamPerio2
45     {
46         type cyclicGgi;
47     }
48     downstreamPerio1
49     {
50         type cyclicGgi;
51     }
52     downstreamPerio2
53     {
54         type cyclicGgi;
55     }
56     inflow
57     {
58         type zeroGradient;
59     }
60     outflow
61     {
62         type fixedValue;
63         value uniform 0;
64     }
67 // ************************************************************************* //