Backported heat transfer solvers and tutorials (vanilla OF 3.0.1) (in chtMultiRegionF...
[foam-extend-4.0.git] / tutorials / heatTransfer / buoyantSimpleRadiationFoam / hotRadiationRoom / 0 / epsilon
blob7a8fa872c282202976209f5a21406656a5434dba
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     4.0                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  | For copyright notice see file Copyright         |
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 0.01;
22 boundaryField
24     box
25     {
26         type            compressible::epsilonWallFunction;
27         refValue        uniform 0;
28         value           uniform 0.01;
29         Cmu             0.09;
30         kappa           0.41;
31         E               9.8;
32     }
33     floor
34     {
35         type            compressible::epsilonWallFunction;
36         refValue        uniform 0;
37         value           uniform 0.01;
38         Cmu             0.09;
39         kappa           0.41;
40         E               9.8;
41     }
42     ceiling
43     {
44         type            compressible::epsilonWallFunction;
45         refValue        uniform 0;
46         value           uniform 0.01;
47         Cmu             0.09;
48         kappa           0.41;
49         E               9.8;
50     }
51     fixedWalls
52     {
53         type            compressible::epsilonWallFunction;
54         refValue        uniform 0;
55         value           uniform 0.01;
56         Cmu             0.09;
57         kappa           0.41;
58         E               9.8;
59     }
63 // ************************************************************************* //