initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / combustion / XiFoam / les / pitzDaily / 0 / U
blobc625528d1648cf11570956045bfb20a2db32387b
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     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     inlet
24     {
25         type            turbulentInlet;
26         referenceField  uniform (13.3 0 0);
27         fluctuationScale (0.04 0.02 0.02);
28     }
30     outlet
31     {
32         type            inletOutlet;
33         inletValue      uniform (0 0 0);
34         value           uniform (0 0 0);
35     }
37     upperWall
38     {
39         type            fixedValue;
40         value           uniform (0 0 0);
41     }
43     lowerWall
44     {
45         type            fixedValue;
46         value           uniform (0 0 0);
47     }
49     frontAndBack
50     {
51         type            empty;
52     }
55 // ************************************************************************* //