Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoPimpleFoam / ras / angledDuct / 0 / p
blob1f941889619a2abbddbd1c101559509713135e1d
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;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [1 -1 -2 0 0 0 0];
19 internalField   uniform 1.0e5;
21 boundaryField
23     front
24     {
25         type            zeroGradient;
26     }
27     back
28     {
29         type            zeroGradient;
30     }
31     wall
32     {
33         type            zeroGradient;
34     }
35     porosityWall
36     {
37         type            zeroGradient;
38     }
40     inlet
41     {
42         type            zeroGradient;
43     }
44     outlet
45     {
46         type            fixedValue;
47         value           $internalField;
48     }
51 // ************************************************************************* //