initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / snappyMultiRegionHeater / system / topAir / changeDictionaryDict
blob31f15bc67ad62be524b7420e48e80866bdff52d7
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         topAir_to_leftSolid
22         {
23             offset          ( 0 0 0 );
24             sampleMode      nearestPatchFace;
25             sampleRegion    leftSolid;
26             samplePatch     leftSolid_to_topAir;
27         }
28         topAir_to_heater
29         {
30             offset          ( 0 0 0 );
31             sampleMode      nearestPatchFace;
32             sampleRegion    heater;
33             samplePatch     heater_to_topAir;
34         }
35         topAir_to_rightSolid
36         {
37             offset          ( 0 0 0 );
38             sampleMode      nearestPatchFace;
39             sampleRegion    rightSolid;
40             samplePatch     rightSolid_to_topAir;
41         }
42     }
44     U
45     {
46         internalField   uniform ( 0.01 0 0 );
47         boundaryField
48         {
49             minX
50             {
51                 type            fixedValue;
52                 value           uniform (0.01 0 0);
53             }
54             maxX
55             {
56                 type            inletOutlet;
57                 inletValue      uniform (0 0 0);
58             }
60             maxY
61             {
62                 type            fixedValue;
63                 value           uniform (0 0 0);
64             }
66             minZ
67             {
68                 type            fixedValue;
69                 value           uniform (0 0 0);
70             }
71             maxZ
72             {
73                 type            fixedValue;
74                 value           uniform (0 0 0);
75             }
77             topAir_to_leftSolid
78             {
79                 type            fixedValue;
80                 value           uniform (0 0 0);
82             }
83             topAir_to_heater
84             {
85                 type            fixedValue;
86                 value           uniform (0 0 0);
87             }
88             topAir_to_rightSolid
89             {
90                 type            fixedValue;
91                 value           uniform (0 0 0);
92             }
93         }
94     }
96     T
97     {
98         internalField   uniform 300;
100         boundaryField
101         {
102             maxY
103             {
104                 type            fixedValue;
105                 value           uniform 300;
106             }
107             minX
108             {
109                 type            fixedValue;
110                 value           uniform 300;
111             }
112             maxX
113             {
114                 type            fixedValue;
115                 value           uniform 300;
116             }
117             minZ
118             {
119                 type            fixedValue;
120                 value           uniform 300;
121             }
122             maxZ
123             {
124                 type            fixedValue;
125                 value           uniform 300;
126             }
127             topAir_to_leftSolid
128             {
129                 type            solidWallMixedTemperatureCoupled;
130                 neighbourFieldName T;
131                 K               K;
132                 value           uniform 300;
134             }
135             topAir_to_heater
136             {
137                 type            solidWallMixedTemperatureCoupled;
138                 neighbourFieldName T;
139                 K               K;
140                 value           uniform 300;
141             }
142             topAir_to_rightSolid
143             {
144                 type            solidWallMixedTemperatureCoupled;
145                 neighbourFieldName T;
146                 K               K;
147                 value           uniform 300;
148             }
149         }
150     }
152     epsilon
153     {
154         // Set the value on all bc to non-zero. Not used in simulation
155         // since zeroGradient; only used in initialisation.
156         boundaryField
157         {
158             minX
159             {
160                 type            fixedValue;
161                 value           uniform 0.01;
162             }
163             maxX
164             {
165                 type            zeroGradient;
166                 value           uniform 0.01;
167             }
169             minY
170             {
171                 type            zeroGradient;
172                 value           uniform 0.01;
173             }
174             maxY
175             {
176                 type            zeroGradient;
177                 value           uniform 0.01;
178             }
180             minZ
181             {
182                 type            zeroGradient;
183                 value           uniform 0.01;
184             }
185             maxZ
186             {
187                 type            zeroGradient;
188                 value           uniform 0.01;
189             }
190             topAir_to_leftSolid
191             {
192                 type            zeroGradient;
193                 value           uniform 0.01;
194             }
195             topAir_to_heater
196             {
197                 type            zeroGradient;
198                 value           uniform 0.01;
199             }
200             topAir_to_rightSolid
201             {
202                 type            zeroGradient;
203                 value           uniform 0.01;
204             }
205         }
206     }
208     k
209     {
210         internalField   uniform 0.1;
211         boundaryField
212         {
213             minX
214             {
215                 type            fixedValue;
216                 value           uniform 0.1;
217             }
219             maxX
220             {
221                 type            zeroGradient;
222                 value           uniform 0.1;
223             }
225             maxY
226             {
227                 type            zeroGradient;
228                 value           uniform 0.1;
229             }
231             minZ
232             {
233                 type            zeroGradient;
234                 value           uniform 0.1;
235             }
236             maxZ
237             {
238                 type            zeroGradient;
239                 value           uniform 0.1;
240             }
242             topAir_to_leftSolid
243             {
244                 type            zeroGradient;
245                 value           uniform 0.1;
246             }
247             topAir_to_heater
248             {
249                 type            zeroGradient;
250                 value           uniform 0.1;
251             }
252             topAir_to_rightSolid
253             {
254                 type            zeroGradient;
255                 value           uniform 0.1;
256             }
257         }
258     }
260     p
261     {
262         internalField   uniform 1E5;
264         boundaryField
265         {
266             minX
267             {
268                 type            buoyantPressure;
269                 value           1e5;
270             }
271             maxX
272             {
273                 type            waveTransmissive;
274                 //field           p;
275                 phi             phi;
276                 rho             rho;
277                 psi             psi;
278                 gamma           1.4;    // cp/cv
279                 fieldInf        1e5;
280                 lInf            0.40;   // double length of domain
281                 value           uniform 1e5;
282             }
284             maxY
285             {
286                 type            buoyantPressure;
287                 value           1e5;
288             }
290             minZ
291             {
292                 type            buoyantPressure;
293                 value           1e5;
294             }
295             maxZ
296             {
297                 type            buoyantPressure;
298                 value           1e5;
299             }
301             topAir_to_leftSolid
302             {
303                 type            buoyantPressure;
304                 value           1e5;
305             }
306             topAir_to_heater
307             {
308                 type            buoyantPressure;
309                 value           1e5;
310             }
311             topAir_to_rightSolid
312             {
313                 type            buoyantPressure;
314                 value           1e5;
315             }
316         }
317     }
320 // ************************************************************************* //