fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / bottomAir / changeDictionaryDict
blobf756353b510c399b13e4630aba39df4927d52d8c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      changePatchTypeDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dictionaryReplacement
19     U
20     {
21         internalField   uniform (0 0 0);
22         boundaryField
23         {
24             minX
25             {
26                 type            fixedValue;
27                 value           uniform (0 0 0);
28             }
29             maxX
30             {
31                 type            fixedValue;
32                 value           uniform (0 0 0);
33             }
35             bottomAir_to_leftSolid
36             {
37                 type            fixedValue;
38                 value           uniform (0 0 0);
40             }
41             bottomAir_to_heater
42             {
43                 type            fixedValue;
44                 value           uniform (0 0 0);
45             }
46             bottomAir_to_rightSolid
47             {
48                 type            fixedValue;
49                 value           uniform (0 0 0);
50             }
51         }
52     }
54     T
55     {
56         boundaryField
57         {
58             minX
59             {
60                 type            zeroGradient;
61             }
62             bottomAir_to_leftSolid
63             {
64                 type            solidWallMixedTemperatureCoupled;
65                 neighbourRegionName leftSolid;
66                 neighbourPatchName leftSolid_to_bottomAir;
67                 neighbourFieldName T;
68                 K               K;
69                 value           uniform 300;
71             }
72             bottomAir_to_heater
73             {
74                 type            solidWallMixedTemperatureCoupled;
75                 neighbourRegionName heater;
76                 neighbourPatchName heater_to_bottomAir;
77                 neighbourFieldName T;
78                 K               K;
79                 value           uniform 300;
80             }
81             bottomAir_to_rightSolid
82             {
83                 type            solidWallMixedTemperatureCoupled;
84                 neighbourRegionName rightSolid;
85                 neighbourPatchName rightSolid_to_bottomAir;
86                 neighbourFieldName T;
87                 K               K;
88                 value           uniform 300;
89             }
90         }
91     }
93     epsilon
94     {
95         // Set the value on all bc to non-zero. Not used in simulation
96         // since zeroGradient; only used in initialisation.
97         internalField   uniform 0.01;
99         boundaryField
100         {
101             minX
102             {
103                 type            zeroGradient;
104                 value           uniform 0.01;
105             }
106             maxX
107             {
108                 type            zeroGradient;
109                 value           uniform 0.01;
110             }
112             minY
113             {
114                 type            zeroGradient;
115                 value           uniform 0.01;
116             }
117             maxY
118             {
119                 type            zeroGradient;
120                 value           uniform 0.01;
121             }
123             minZ
124             {
125                 type            zeroGradient;
126                 value           uniform 0.01;
127             }
128             maxZ
129             {
130                 type            zeroGradient;
131                 value           uniform 0.01;
132             }
134             bottomAir_to_leftSolid
135             {
136                 type            zeroGradient;
137                 value           uniform 0.01;
138             }
139             bottomAir_to_heater
140             {
141                 type            zeroGradient;
142                 value           uniform 0.01;
143             }
144             bottomAir_to_rightSolid
145             {
146                 type            zeroGradient;
147                 value           uniform 0.01;
148             }
149         }
150     }
152     k
153     {
154         internalField   uniform 0.1;
155         boundaryField
156         {
157             minX
158             {
159                 type            zeroGradient;
160                 value           uniform 0.1;
161             }
162             maxX
163             {
164                 type            zeroGradient;
165                 value           uniform 0.1;
166             }
168             minY
169             {
170                 type            zeroGradient;
171                 value           uniform 0.1;
172             }
173             maxY
174             {
175                 type            zeroGradient;
176                 value           uniform 0.1;
177             }
179             minZ
180             {
181                 type            zeroGradient;
182                 value           uniform 0.1;
183             }
184             maxZ
185             {
186                 type            zeroGradient;
187                 value           uniform 0.1;
188             }
190             bottomAir_to_leftSolid
191             {
192                 type            zeroGradient;
193                 value           uniform 0.1;
194             }
195             bottomAir_to_heater
196             {
197                 type            zeroGradient;
198                 value           uniform 0.1;
199             }
200             bottomAir_to_rightSolid
201             {
202                 type            zeroGradient;
203                 value           uniform 0.1;
204             }
205         }
206     }
208     p
209     {
210         boundaryField
211         {
212             minX
213             {
214                 type            buoyantPressure;
215                 value           uniform 1e+05;
216             }
217             maxX
218             {
219                 type            buoyantPressure;
220                 value           uniform 1e+05;
221             }
222             minY
223             {
224                 type            buoyantPressure;
225                 value           uniform 1e+05;
226             }
227             minZ
228             {
229                 type            buoyantPressure;
230                 value           uniform 1e+05;
231             }
232             maxZ
233             {
234                 type            buoyantPressure;
235                 value           uniform 1e+05;
236             }
237             bottomAir_to_leftSolid
238             {
239                 type            buoyantPressure;
240                 value           uniform 1e+05;
241             }
242             bottomAir_to_heater
243             {
244                 type            buoyantPressure;
245                 value           uniform 1e+05;
246             }
247             bottomAir_to_rightSolid
248             {
249                 type            buoyantPressure;
250                 value           uniform 1e+05;
251             }
252         }
253     }
257 // ************************************************************************* //