Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunctionFan / 0 / epsilon
blobb742d3774ca7f381f780a80c5b1477825742ebd7
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      epsilon;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -3 0 0 0 0];
20 internalField   uniform 1;
22 boundaryField
24     inlet
25     {
26         type            turbulentMixingLengthDissipationRateInlet;
27         mixingLength    0.01;
28         phi             phi;
29         k               k;
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            epsilonWallFunction;
47         Cmu             0.09;
48         kappa           0.41;
49         E               9.8;
50         value           uniform 1;
51     }
52     fan_half0
53     {
54         type            cyclic;
55     }
56     fan_half1
57     {
58         type            cyclic;
59     }
60     defaultFaces
61     {
62         type            epsilonWallFunction;
63         Cmu             0.09;
64         kappa           0.41;
65         E               9.8;
66         value           uniform 1;
67     }
71 // ************************************************************************* //