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 / p
blob09bc84d80567136aa17b644c65d2b76e07f16163
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      p;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [ 1 -1 -2 0 0 0 0 ];
20 internalField   uniform 1e+05;
22 boundaryField
24     minX
25     {
26         type            zeroGradient;
27         value           uniform 0;
28     }
29     maxX
30     {
31         type            fixedValue;
32         value           uniform 0;
33     }
34     minY
35     {
36         type            zeroGradient;
37         value           uniform 0;
38     }
39     maxY
40     {
41         type            zeroGradient;
42         value           uniform 0;
43     }
44     minZ
45     {
46         type            zeroGradient;
47         value           uniform 0;
48     }
49     maxZ
50     {
51         type            zeroGradient;
52         value           uniform 0;
53     }
56 // ************************************************************************* //