initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoPimpleFoam / angledDuct / 0 / epsilon
blobca6ec2ff0d794beb9ea394d4187d986b001eb4f2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      epsilon;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16 dimensions      [0 2 -3 0 0 0 0];
18 internalField   uniform 200;
20 boundaryField
23     front
24     {
25         type            zeroGradient;
26     }
27     back
28     {
29         type            zeroGradient;
30     }
31     wall
32     {
33         type            zeroGradient;
34     }
35     porosityWall
36     {
37         type            zeroGradient;
38     }
40     inlet
41     {
42         type            turbulentMixingLengthDissipationRateInlet;
43         mixingLength    0.005;
44         value           $internalField;
45     }
47     outlet
48     {
49         type            inletOutlet;
50         inletValue      $internalField;
51         value           $internalField;
52     }
55 // ************************************************************************* //