Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleSRFFoam / simpleBlade / 0 / p
blob7311361f1b34031e3aa24b723938755493f28035
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [1 -1 -2 0 0 0 0];
19 internalField   uniform 101325;
21 boundaryField
23     inlet
24     {
25         type            totalPressure;
26         phi             phi;
27         rho             none;
28         psi             psi;
29         U               Uabs;
30         gamma           1.4;
31         p0              uniform 1.4e5;
32         value           $internalField;
33     }
35     outlet
36     {
37         type            fixedValue;
38         value           $internalField;
39     }
41     blade
42     {
43         type            zeroGradient;
44     }
46     shaft
47     {
48         type            zeroGradient;
49     }
51     shroud
52     {
53         type            zeroGradient;
54     }
56     frontAndBack
57     {
58         type            cyclic;
59     }
62 // ************************************************************************* //