Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeaterRadiation / system / topAir / changeDictionaryDict
blob6e2e013abc892b3d9cc71027a14a89649a43fc2b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      changeDictionaryDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dictionaryReplacement
19     U
20     {
21         internalField   uniform (0.1 0 0);
22         boundaryField
23         {
24             ".*"
25             {
26                 type            fixedValue;
27                 value           uniform (0 0 0);
28             }
29             minX
30             {
31                 type            fixedValue;
32                 value           uniform ( 0.1 0 0 );
33             }
34             maxX
35             {
36                 type            inletOutlet;
37                 inletValue      uniform ( 0 0 0 );
38                 value           uniform ( 0.1 0 0 );
39             }
40         }
41     }
43     T
44     {
45         internalField   uniform 300;
46         boundaryField
47         {
48             ".*"
49             {
50                 type            zeroGradient;
51             }
53             minX
54             {
55                 type            fixedValue;
56                 value           uniform 300;
57             }
58             maxX
59             {
60                 type            inletOutlet;
61                 inletValue      uniform 300;
62                 value           uniform 300;
63             }
65             "topAir_to_.*"
66             {
67                 type            compressible::turbulentTemperatureRadCoupledMixed;
68                 Tnbr            T;
69                 K               basicThermo;
70                 QrNbr           none;
71                 Qr              Qr;
72                 KName           none;
73                 value           uniform 300;
74             }
75         }
76     }
78     epsilon
79     {
80         internalField   uniform 0.01;
81         boundaryField
82         {
83             ".*"
84             {
85                 type            compressible::epsilonWallFunction;
86                 value           uniform 0.01;
87             }
89             minX
90             {
91                 type            fixedValue;
92                 value           uniform 0.01;
93             }
94             maxX
95             {
96                 type            inletOutlet;
97                 inletValue      uniform 0.01;
98                 value           uniform 0.01;
99             }
100         }
101     }
103     k
104     {
105         internalField   uniform 0.1;
106         boundaryField
107         {
108             ".*"
109             {
110                 type            compressible::kqRWallFunction;
111                 value           uniform 0.1;
112             }
114             minX
115             {
116                 type            fixedValue;
117                 value           uniform 0.1;
118             }
119             maxX
120             {
121                 type            inletOutlet;
122                 inletValue      uniform 0.1;
123                 value           uniform 0.1;
124             }
125         }
126     }
128     p_rgh
129     {
130         internalField   uniform 1e5;
131         boundaryField
132         {
133             ".*"
134             {
135                 type            buoyantPressure;
136                 value           uniform 1e5;
137             }
139             maxX
140             {
141                 type            fixedValue;
142                 value           uniform 1e5;
143             }
144         }
145     }
147     p
148     {
149         internalField   uniform 1e5;
150         boundaryField
151         {
152             ".*"
153             {
154                 type            calculated;
155                 value           uniform 1e5;
156             }
158             maxX
159             {
160                 type            calculated;
161                 value           uniform 1e5;
162             }
163         }
164     }
166     Qr
167     {
168         internalField   uniform 0;
169         boundaryField
170         {
171             ".*"
172             {
173                 type            greyDiffusiveRadiationViewFactor;
174                 emissivityMode  lookup;
175                 Qro             uniform 0;
176                 emissivity      uniform 1.0;
177                 value           uniform 0;
178             }
180             "topAir_to_.*"
181             {
182                 type            greyDiffusiveRadiationViewFactor;
183                 emissivityMode  solidThermo;
184                 Qro             uniform 0;
185                 value           uniform 0;
186             }
187         }
188     }
190     G
191     {
192         internalField   uniform 0;
193         boundaryField
194         {
195             ".*"
196             {
197                 type            MarshakRadiation;
198                 T               T;
199                 emissivityMode  lookup;
200                 emissivity      uniform 1.0;
201                 value           uniform 0;
202             }
204             "topAir_to_.*"
205             {
206                 type            MarshakRadiation;
207                 T               T;
208                 emissivityMode  solidThermo;
209                 value           uniform 0;
210             }
211         }
212     }
214     IDefault
215     {
216         internalField   uniform 0;
217         boundaryField
218         {
219             ".*"
220             {
221                 type            greyDiffusiveRadiation;
222                 T               T;
223                 emissivityMode  lookup;
224                 Qro             uniform 0;
225                 emissivity      uniform 1.0;
226                 value           uniform 0;
227             }
229             "topAir_to_.*"
230             {
231                 type            greyDiffusiveRadiation;
232                 T               T;
233                 emissivityMode  solidThermo;
234                 Qro             uniform 0;
235                 value           uniform 0;
236             }
237         }
238     }
241 // ************************************************************************* //