Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunctionFan / 0 / k
blobf5d5203cf2ceceaf78eac0e4510025cf2291bb9d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     location    "0";
14     object      k;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -2 0 0 0 0];
20 internalField   uniform 1;
22 boundaryField
24     inlet
25     {
26         type            turbulentIntensityKineticEnergyInlet;
27         intensity       0.05;
28         U               U;
29         phi             phi;
30         value           uniform 1;
31     }
32     outlet1
33     {
34         type            inletOutlet;
35         inletValue      uniform 1;
36         value           uniform 1;
37     }
38     outlet2
39     {
40         type            inletOutlet;
41         inletValue      uniform 1;
42         value           uniform 1;
43     }
44     baffles
45     {
46         type            kqRWallFunction;
47         value           uniform 1;
48     }
49     fan_half0
50     {
51         type            cyclic;
52     }
53     fan_half1
54     {
55         type            cyclic;
56     }
57     defaultFaces
58     {
59         type            kqRWallFunction;
60         value           uniform 1;
61     }
65 // ************************************************************************* //