Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / pitzDailyBodyFitted / 0_org / epsilon
blob7e585383e2b452096862bb6b8e2e63a806664f13
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 14.855;
22 boundaryField
24     inlet
25     {
26         type            fixedValue;
27         value           uniform 14.855;
28     }
29     outlet
30     {
31         type            zeroGradient;
32     }
33     upperWall
34     {
35         type            epsilonWallFunction;
36         refValue        uniform 0;
37         value           uniform 14.855;
38         Cmu             0.09;
39         kappa           0.41;
40         E               9.8;
41     }
42     lowerWall
43     {
44         type            epsilonWallFunction;
45         refValue        uniform 0;
46         value           uniform 14.855;
47         Cmu             0.09;
48         kappa           0.41;
49         E               9.8;
50     }
51     frontAndBack
52     {
53         type            empty;
54     }
57 // ************************************************************************* //