ENH: splitMeshRegions now fills in coupling information in directMapped patch.
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / leftSolid / changeDictionaryDict
blob7fb51a8f6eecb7e4f4f5d5a30d7927c7e9eb913f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      changeDictionaryDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dictionaryReplacement
19     boundary
20     {
21         minZ
22         {
23             type            patch;
24         }
25         maxZ
26         {
27             type            patch;
28         }
29     }
31     T
32     {
33         internalField   uniform 300;
35         boundaryField
36         {
37             ".*"
38             {
39                 type            zeroGradient;
40                 value           uniform 300;
41             }
42             "leftSolid_to_.*"
43             {
44                 type            solidWallMixedTemperatureCoupled;
45                 neighbourFieldName T;
46                 K               K;
47                 value           uniform 300;
48             }
49         }
50     }
52     rho
53     {
54         internalField   uniform 8000;
56         boundaryField
57         {
58             ".*"
59             {
60                 type            calculated;
61             }
62         }
63     }
65     K
66     {
67         internalField   uniform 80;
69         boundaryField
70         {
71             ".*"
72             {
73                 type            zeroGradient;
74             }
75         }
76     }
78     cp
79     {
80         internalField   uniform 450;
82         boundaryField
83         {
84             ".*"
85             {
86                 type            zeroGradient;
87             }
88         }
89     }
92 // ************************************************************************* //