Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / verticalChannel / 0.org / p
blob1bd67dd396ece112c995e726fb97d072faabcf6d
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      [1 -1 -2 0 0 0 0];
20 internalField   uniform 100000;
22 boundaryField
24     back
25     {
26         type            symmetryPlane;
27     }
28     front
29     {
30         type            symmetryPlane;
31     }
32     inletCentral
33     {
34         type            zeroGradient;
35     }
36     inletSides
37     {
38         type            zeroGradient;
39     }
40     outlet
41     {
42         type            fixedValue;
43         value           uniform 100000;
44     }
45     walls
46     {
47         type            zeroGradient;
48     }
51 // ************************************************************************* //