initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoCentralFoam / LadenburgJet60psi / 0.org / T
blob94a83152f759c655ef7d7d7d793a07df462f3b1e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.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 298.0;
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           uniform 247.1;
27     }
29     outlet
30     {
31         type            zeroGradient;
32     }
34     freestream
35     {
36         type            totalTemperature;
37         value           uniform 297;
38         T0              uniform 297;
39                 U               U;
40         phi             phi;
41         rho             none;
42         psi             psi;
43         gamma           1.4;
44     }
46     freestreamInlet
47     {
48         type            fixedValue;
49         value           uniform 297.0;
50     }
52     wedge1 {type wedge;}
53     wedge2 {type wedge;}
56 // ************************************************************************* //