Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / pimpleFoam / t-junction / 0 / epsilon
blobfd2459b34507ee429cd4caa20b488487ff6176b2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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     }
50 // ************************************************************************* //