initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / 0 / k
blob0e7864568a90898e55bb51bd0f8e3a616b7d4863
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     location    "0.001";
14     object      k;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -2 0 0 0 0];
20 internalField   uniform 0.1;
22 boundaryField
24     minY
25     {
26         type            kqRWallFunction;
27         value           uniform 0.1;
28     }
29     maxY
30     {
31         type            kqRWallFunction;
32         value           uniform 0.1;
33     }
34     minX
35     {
36         type            fixedValue;
37         value           uniform 0.1;
38     }
39     maxX
40     {
41         type            zeroGradient;
42     }
43     minZ
44     {
45         type            kqRWallFunction;
46         value           uniform 0.1;
47     }
48     maxZ
49     {
50         type            kqRWallFunction;
51         value           uniform 0.1;
52     }
53     topAir_to_leftSolid
54     {
55         type            zeroGradient;
56     }
57     topAir_to_heater
58     {
59         type            zeroGradient;
60     }
61     topAir_to_rightSolid
62     {
63         type            zeroGradient;
64     }
68 // ************************************************************************* //