Initial release of the new fireFoam solver and ancillary libraries.
[OpenFOAM-1.6.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire2D / 0 / U
blob60ed71eac9ec63e8d075e3c898cc13cdd605138f
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       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 1 -1 0 0 0 0];
20 internalField   uniform (0 0 0);
22 boundaryField
24     outlet
25     {
27         type            pressureInletOutletVelocity;
28         value           uniform (0 0 0);
30     }
31     sides
32     {
33         type            pressureInletOutletVelocity;
34         value           uniform (0 0 0);
35     }
36     base
37     {
38         type            fixedValue;
39         value           uniform (0 0 0);
40     }
41     inlet
42     {
43         type            fixedValue;
44         value           uniform (0 0.05 0);
45     }
46     frontBack
47     {
48         type        empty;
49     }
53 // ************************************************************************* //