twoLiquidMixingFoam, settlingFoam: updated to solve for p - rho*(g.h).
[OpenFOAM-1.6.x.git] / tutorials / multiphase / settlingFoam / ras / dahl / 0 / p_rgh
blob74994fde10fc9b04b54d68737bc188b1a753ef20
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      p_rgh;
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 // ************************************************************************* //