fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / simpleFoam / motorBike / 0 / p
blob4aa722ac83ac7c225081a3c1729c7b4168a77c00
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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 // ************************************************************************* //