Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / incompressible / windSimpleFoam / turbineSiting / 0 / p
blob1dfe4fd6492154ddb34762cd6092913d39629f22
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 #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            uniformFixedValue;
33         value           uniform $pressure;
34         uniformValue    $pressure;
35     }
37     "terrain_.*"
38     {
39         type            zeroGradient;
40     }
42     ground
43     {
44         type            zeroGradient;
45     }
47     #include "include/sideAndTopPatches"
50 // ************************************************************************* //