Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleSRFFoam / bentBlade / 0 / T
blob7f0e4614a9d63d898eee596263612e65c0808390
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      T;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 0 1 0 0 0];
19 internalField   uniform 300;
21 boundaryField
23     inlet
24     {
25         type            totalTemperature;
26         phi             phi;
27         rho             none;
28         psi             psi;
29         U               Uabs;
30         gamma           1.4;
31         T0              uniform 300;
32         value           $internalField;
33     }
35     outlet
36     {
37         type            zeroGradient;
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 // ************************************************************************* //