Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / incompressible / porousSimpleFoam / angledDuctImplicit / 0 / p
blob6901f02298eedf23a9d307e4818dc206b0dbb54c
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -2 0 0 0 0];
19 internalField   uniform 0;
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 // ************************************************************************* //