Merge branch 'master' of ssh://repo.or.cz/srv/git/OpenFOAM-1.6.x
[OpenFOAM-1.6.x.git] / tutorials / multiphase / settlingFoam / ras / dahl / 0 / pmh
bloba2a965130f57a71e8bc7cc3d8126c8fdedfe7143
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      pmh;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [1 -1 -2 0 0 0 0];
19 internalField   uniform 0;
21 boundaryField
23     inlet
24     {
25         type            zeroGradient;
26     }
28     outlet
29     {
30         type            fixedValue;
31         value           uniform 0;
32     }
34     bottomWall
35     {
36         type            buoyantPressure;
37         value           uniform 0;
38     }
40     endWall
41     {
42         type            zeroGradient;
43     }
45     top
46     {
47         type            buoyantPressure;
48         value           uniform 0;
49     }
51     frontAndBack
52     {
53         type            empty;
54     }
57 // ************************************************************************* //