Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interMixingFoam / laminar / damBreak / 0 / p_rgh
blob47f00b6c7420354c70a0183bcd673dbfbf295429
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.com                      |
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     leftWall
24     {
25         type            buoyantPressure;
26         value           uniform 0;
27     }
29     rightWall
30     {
31         type            buoyantPressure;
32         value           uniform 0;
33     }
35     lowerWall
36     {
37         type            buoyantPressure;
38         value           uniform 0;
39     }
41     atmosphere
42     {
43         type            totalPressure;
44         p0              uniform 0;
45         U               U;
46         phi             phi;
47         rho             rho;
48         psi             none;
49         gamma           1;
50         value           uniform 0;
51     }
53     defaultFaces
54     {
55         type            empty;
56     }
59 // ************************************************************************* //