Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunction / 0 / k
blob890b20877cf318498266ad5a6e4da5de0195b716
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;       // 5% turbulent intensity
28         value           uniform 1;
29     }
31     outlet1
32     {
33         type            inletOutlet;
34         inletValue      uniform 1;
35     }
37     outlet2
38     {
39         type            inletOutlet;
40         inletValue      uniform 1;
41     }
43     defaultFaces
44     {
45         type            kqRWallFunction;
46         value           uniform 0;
47     }
51 // ************************************************************************* //