initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / chtMultiRegionFoam / multiRegionHeater / system / topAir / changeDictionaryDict
blobc24aa9244d0a94d8844f76d2021592e21c85959e
1 FoamFile
3     version         2.0;
4     format          ascii;
6     root            "/home/warhol/chris/foam/chris2.1/run/tutorials/interFoam";
7     case            "damBreak";
8     instance        "system";
9     local           "";
11     class           dictionary;
12     object          changePatchTypeDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dictionaryReplacement
20     U
21     {
22         internalField   uniform ( 0.01 0 0 );
23         boundaryField
24         {
25             minX
26             {
27                 type            fixedValue;
28                 value           uniform (0.01 0 0);
29             }
30             maxX
31             {
32                 type            inletOutlet;
33                 inletValue      uniform (0 0 0);
34             }
37             topAir_to_leftSolid
38             {
39                 type            fixedValue;
40                 value           uniform (0 0 0);
42             }
43             topAir_to_heater
44             {
45                 type            fixedValue;
46                 value           uniform (0 0 0);
47             }
48             topAir_to_rightSolid
49             {
50                 type            fixedValue;
51                 value           uniform (0 0 0);
52             }
53         }
54     }
58     T
59     {
60         boundaryField
61         {
62             minX
63             {
64                 type            fixedValue;
65                 value           uniform 300;
66             }
67             topAir_to_leftSolid
68             {
69                 type            solidWallTemperatureCoupled;
70                 neighbourRegionName leftSolid;
71                 neighbourPatchName leftSolid_to_topAir;
72                 neighbourFieldName T;
73                 K               K;
74                 value           uniform 300;
76             }
77             topAir_to_heater
78             {
79                 type            solidWallTemperatureCoupled;
80                 neighbourRegionName heater;
81                 neighbourPatchName heater_to_topAir;
82                 neighbourFieldName T;
83                 K               K;
84                 value           uniform 300;
85             }
86             topAir_to_rightSolid
87             {
88                 type            solidWallTemperatureCoupled;
89                 neighbourRegionName rightSolid;
90                 neighbourPatchName rightSolid_to_topAir;
91                 neighbourFieldName T;
92                 K               K;
93                 value           uniform 300;
94             }
95         }
96     }
99     epsilon
100     {
101         // Set the value on all bc to non-zero. Not used in simulation
102         // since zeroGradient; only used in initialisation.
103         boundaryField
104         {
105             minX
106             {
107                 type            fixedValue;
108                 value           uniform 0.01;
109             }
110             maxX
111             {
112                 type            zeroGradient;
113                 value           uniform 0.01;
114             }
116             minY
117             {
118                 type            zeroGradient;
119                 value           uniform 0.01;
120             }
121             maxY
122             {
123                 type            zeroGradient;
124                 value           uniform 0.01;
125             }
127             minZ
128             {
129                 type            zeroGradient;
130                 value           uniform 0.01;
131             }
132             maxZ
133             {
134                 type            zeroGradient;
135                 value           uniform 0.01;
136             }
137             topAir_to_leftSolid
138             {
139                 type            zeroGradient;
140                 value           uniform 0.01;
141             }
142             topAir_to_heater
143             {
144                 type            zeroGradient;
145                 value           uniform 0.01;
146             }
147             topAir_to_rightSolid
148             {
149                 type            zeroGradient;
150                 value           uniform 0.01;
151             }
152         }
153     }
156     k
157     {
158         internalField   uniform 0.1;
159         boundaryField
160         {
161             minX
162             {
163                 type            fixedValue;
164                 value           uniform 0.1;
165             }
167             maxX
168             {
169                 type            zeroGradient;
170                 value           uniform 0.1;
171             }
173             minY
174             {
175                 type            zeroGradient;
176                 value           uniform 0.1;
177             }
178             maxY
179             {
180                 type            zeroGradient;
181                 value           uniform 0.1;
182             }
184             minZ
185             {
186                 type            zeroGradient;
187                 value           uniform 0.1;
188             }
189             maxZ
190             {
191                 type            zeroGradient;
192                 value           uniform 0.1;
193             }
195             topAir_to_leftSolid
196             {
197                 type            zeroGradient;
198                 value           uniform 0.1;
199             }
200             topAir_to_heater
201             {
202                 type            zeroGradient;
203                 value           uniform 0.1;
204             }
205             topAir_to_rightSolid
206             {
207                 type            zeroGradient;
208                 value           uniform 0.1;
209             }
210         }
211     }
214     pd
215     {
216         boundaryField
217         {
218             minX
219             {
220                 type            fixedFluxBuoyantPressure;
221                 value           0;
222             }
223             maxX
224             {
225                 type            waveTransmissive;
226                 field           pd;
227                 phi             phi;
228                 rho             rho;
229                 psi             psi;
230                 gamma           1.4;    // cp/cv
231                 fieldInf        0;
232                 lInf            0.40;   // double length of domain
233                 value           uniform 0;
234             }
236             minY
237             {
238                 type            fixedFluxBuoyantPressure;
239                 value           0;
240             }
242             minZ
243             {
244                 type            fixedFluxBuoyantPressure;
245                 value           0;
246             }
247             maxZ
248             {
249                 type            fixedFluxBuoyantPressure;
250                 value           0;
251             }
253             topAir_to_leftSolid
254             {
255                 type            fixedFluxBuoyantPressure;
256                 value           0;
257             }
258             topAir_to_heater
259             {
260                 type            fixedFluxBuoyantPressure;
261                 value           0;
262             }
263             topAir_to_rightSolid
264             {
265                 type            fixedFluxBuoyantPressure;
266                 value           0;
267             }
268         }
269     }
271     p
272     {
273         internalField   uniform 1000000;
275         boundaryField
276         {
277             minX
278             {
279                 type            calculated;
280                 value           uniform 1000000;
281             }
282             maxX
283             {
284                 type            calculated;
285                 value           uniform 1000000;
286             }
287             maxY
288             {
289                 type            calculated;
290                 value           uniform 1000000;
291             }
292             minZ
293             {
294                 type            calculated;
295                 value           uniform 1000000;
296             }
297             maxZ
298             {
299                 type            calculated;
300                 value           uniform 1000000;
301             }
303             topAir_to_leftSolid
304             {
305                 type            calculated;
306                 value           uniform 1000000;
307             }
308             topAir_to_heater
309             {
310                 type            calculated;
311                 value           uniform 1000000;
312             }
313             topAir_to_rightSolid
314             {
315                 type            calculated;
316                 value           uniform 1000000;
317             }
318         }
319     }
322 // ************************************************************************* //