ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunction / 0 / epsilon
blob5b8c5d5e8c9f200fbc31fe04310c46934e6937d6
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.org                      |
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;       // 1cm - half channel height
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            epsilonWallFunction;
46         value           uniform 0;
47     }
51 // ************************************************************************* //