Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / porousBumpChannelIb / 0_org / epsilon
blob17b6cea59deca45c694419e920d7a10578bd1cab
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      binary;
12     class       volScalarField;
13     location    "0";
14     object      epsilon;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [ 0 2 -3 0 0 0 0 ];
20 internalField   uniform 10;
22 boundaryField
24     porousBumpChannel
25     {
26         type            immersedBoundaryEpsilonWallFunction;
27         patchType       immersedBoundary;
28         refValue        uniform 1e-10;
29         refGradient     uniform 0;
30         fixesValue      false;
31         setDeadCellValue yes;
32         deadCellValue   1e-10;
33         value           nonuniform 0();
34         Cmu             0.09;
35         kappa           0.41;
36         E               9.8;
37     }
38     topAndBottom
39     {
40         type            epsilonWallFunction;
41         value           uniform 10;
42     }
43     inlet
44     {
45         type            turbulentMixingLengthDissipationRateInlet;
46         mixingLength    0.005;
47         value           uniform 10;
48     }
49     outlet
50     {
51         type            inletOutlet;
52         inletValue      uniform 10;
53         value           uniform 10;
54     }
55     defaultFaces
56     {
57         type            empty;
58     }
61 // ************************************************************************* //