initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / simpleFoam / motorBike / 0 / p
bloba7ef4983d15919ddb2da0d3cd938985b2ce31905
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 #include        "initialConditions"
19 dimensions      [0 2 -2 0 0 0 0];
21 internalField   uniform $pressure;
23 boundaryField
25     inlet
26     {
27         type            zeroGradient;
28     }
30     outlet
31     {
32         type            fixedValue;
33         value           $internalField;
34     }
36     lowerWall
37     {
38         type            zeroGradient;
39     }
41     "motorBike_.*"
42     {
43         type            zeroGradient;
44     }
46     #include "frontBackUpperPatches"
49 // ************************************************************************* //