Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / 0 / epsilon
blob278e51b35874fda077ccdac870402f0d60780b9f
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 0.01;
22 boundaryField
24     minX
25     {
26         type            fixedValue;
27         value           uniform 0.01;
28     }
29     maxX
30     {
31         type            zeroGradient;
32     }
33     minY
34     {
35         type            zeroGradient;
36     }
37     maxY
38     {
39         type            zeroGradient;
40     }
41     minZ
42     {
43         type            zeroGradient;
44     }
45     maxZ
46     {
47         type            zeroGradient;
48     }
51 // ************************************************************************* //