initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / heater / changeDictionaryDict
blob42a2ec9e9395f4fe865227a401b7fa380033038a
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         heater_to_bottomAir
22         {
23             offset          ( 0 0 0 );
24             sampleMode      nearestPatchFace;
25             sampleRegion    bottomAir;
26             samplePatch     bottomAir_to_heater;
27         }
28         heater_to_leftSolid
29         {
30             offset          ( 0 0 0 );
31             sampleMode      nearestPatchFace;
32             sampleRegion    leftSolid;
33             samplePatch     leftSolid_to_heater;
34         }
35         heater_to_rightSolid
36         {
37             offset          ( 0 0 0 );
38             sampleMode      nearestPatchFace;
39             sampleRegion    rightSolid;
40             samplePatch     rightSolid_to_heater;
41         }
42         heater_to_topAir
43         {
44             offset          ( 0 0 0 );
45             sampleMode      nearestPatchFace;
46             sampleRegion    topAir;
47             samplePatch     topAir_to_heater;
48         }
49     }
51     T
52     {
53         internalField   uniform 300;
55         boundaryField
56         {
57             minY
58             {
59                 type            fixedValue;
60                 value           uniform 500;
61             }
63             minZ
64             {
65                 type            zeroGradient;
66             }
67             maxZ
68             {
69                 type            zeroGradient;
70             }
72             heater_to_bottomAir
73             {
74                 type            solidWallMixedTemperatureCoupled;
75                 neighbourFieldName T;
76                 K               K;
77                 value           uniform 300;
79             }
80             heater_to_leftSolid
81             {
82                 type            solidWallMixedTemperatureCoupled;
83                 neighbourFieldName T;
84                 K               K;
85                 value           uniform 300;
86             }
87             heater_to_rightSolid
88             {
89                 type            solidWallMixedTemperatureCoupled;
90                 neighbourFieldName T;
91                 K               K;
92                 value           uniform 300;
93             }
94             heater_to_topAir
95             {
96                 type            solidWallMixedTemperatureCoupled;
97                 neighbourFieldName T;
98                 K               K;
99                 value           uniform 300;
100             }
101         }
102     }
104     rho
105     {
106         internalField   uniform 8000;
108         boundaryField
109         {
110             minY
111             {
112                 type            zeroGradient;
113             }
114             minZ
115             {
116                 type            zeroGradient;
117             }
118             maxZ
119             {
120                 type            zeroGradient;
121             }
122             heater_to_bottomAir
123             {
124                 type            zeroGradient;
125             }
126             heater_to_leftSolid
127             {
128                 type            zeroGradient;
129             }
130             heater_to_rightSolid
131             {
132                 type            zeroGradient;
133             }
134             heater_to_topAir
135             {
136                 type            zeroGradient;
137             }
138         }
139     }
141     K
142     {
143         internalField   uniform 80;
145         boundaryField
146         {
147             minY
148             {
149                 type            zeroGradient;
150             }
151             minZ
152             {
153                 type            zeroGradient;
154             }
155             maxZ
156             {
157                 type            zeroGradient;
158             }
159             heater_to_bottomAir
160             {
161                 type            zeroGradient;
162             }
163             heater_to_leftSolid
164             {
165                 type            zeroGradient;
166             }
167             heater_to_rightSolid
168             {
169                 type            zeroGradient;
170             }
171             heater_to_topAir
172             {
173                 type            zeroGradient;
174             }
175         }
176     }
178     cp
179     {
180         internalField   uniform 450;
182         boundaryField
183         {
184             minY
185             {
186                 type            zeroGradient;
187             }
188             minZ
189             {
190                 type            zeroGradient;
191             }
192             maxZ
193             {
194                 type            zeroGradient;
195             }
196             heater_to_bottomAir
197             {
198                 type            zeroGradient;
199             }
200             heater_to_leftSolid
201             {
202                 type            zeroGradient;
203             }
204             heater_to_rightSolid
205             {
206                 type            zeroGradient;
207             }
208             heater_to_topAir
209             {
210                 type            zeroGradient;
211             }
212         }
213     }
216 // ************************************************************************* //