initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoPimpleFoam / angledDuct / 0 / p
blob9dc24513e7996ec136fea6c7a1c20423a85cf988
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;
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 // ************************************************************************* //