Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / motorBike / 0.org / p
blob2f8171e33bf4743308ac03edfb58cc8d83edb51a
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 #include        "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 "include/frontBackUpperPatches"
49 // ************************************************************************* //