fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / pimpleFoam / t-junction / 0 / epsilon
blobc6dccfc20e703c6a7b9bf73a70522698d9609c6a
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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 // ************************************************************************* //