ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / SRFSimpleFoam / mixer / 0 / p
blob21e6ad37cc797b7976297d4a0d74f30411fb5492
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.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     inlet
25     {
26         type            zeroGradient;
27     }
28     outlet
29     {
30         type            fixedValue;
31         value           uniform 0;
32     }
33     innerWall
34     {
35         type            zeroGradient;
36     }
37     outerWall
38     {
39         type            zeroGradient;
40     }
41     cyclic_half0
42     {
43         type            cyclic;
44     }
45     cyclic_half1
46     {
47         type            cyclic;
48     }
52 // ************************************************************************* //