ENH: splitMeshRegions now fills in coupling information in directMapped patch.
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / heater / changeDictionaryDict
bloba1b7461235b17d8d01b1a039d360025d6ad63d07
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         minY
22         {
23             type            patch;
24         }
25         minZ
26         {
27             type            patch;
28         }
29         maxZ
30         {
31             type            patch;
32         }
33     }
35     T
36     {
37         internalField   uniform 300;
39         boundaryField
40         {
41             ".*"
42             {
43                 type            zeroGradient;
44                 value           uniform 300;
45             }
46             "heater_to_.*"
47             {
48                 type            solidWallMixedTemperatureCoupled;
49                 neighbourFieldName T;
50                 K               K;
51                 value           uniform 300;
52             }
53             minY
54             {
55                 type            fixedValue;
56                 value           uniform 500;
57             }
58         }
59     }
61     rho
62     {
63         internalField   uniform 8000;
65         boundaryField
66         {
67             ".*"
68             {
69                 type            calculated;
70             }
71         }
72     }
74     K
75     {
76         internalField   uniform 80;
78         boundaryField
79         {
80             ".*"
81             {
82                 type            zeroGradient;
83             }
84         }
85     }
87     cp
88     {
89         internalField   uniform 450;
91         boundaryField
92         {
93             ".*"
94             {
95                 type            zeroGradient;
96             }
97         }
98     }
101 // ************************************************************************* //