fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / compressible / rhoPorousSimpleFoam / porousPlug / 0 / T
blob4afb2dc0b5ab14b0ad39b594086d231e390d8584
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      T;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 0 1 0 0 0];
19 internalField   uniform 298.15;
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           $internalField;
27     }
28     outlet
29     {
30         type inletOutlet;
31         inletValue $internalField;
32     }
33     lowerWall
34     {
35         type zeroGradient;
36     }
37     upperWall
38     {
39         type zeroGradient;
40     }
43 // ************************************************************************* //