BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeaterRadiation / system / bottomAir / changeDictionaryDict
blobc8acf7f380a858f6b1f6d8949f7529812d9a5567
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.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         minX
22         {
23             type            wall;
24         }
25         maxX
26         {
27             type            wall;
28         }
29     }
31     U
32     {
33         internalField   uniform (0.01 0 0);
34         boundaryField
35         {
36             ".*"
37             {
38                 type            fixedValue;
39                 value           uniform (0 0 0);
40             }
41         }
42     }
44     T
45     {
46         internalField   uniform 300;
47         boundaryField
48         {
49             ".*"
50             {
51                 type            zeroGradient;
52             }
54             "bottomAir_to_.*"
55             {
56                 type            compressible::turbulentTemperatureRadCoupledMixed;
57                 Tnbr            T;
58                 K               basicThermo;
59                 QrNbr           none;
60                 Qr              Qr;
61                 KName           none;
62                 value           uniform 300;
63             }
64         }
65     }
67     epsilon
68     {
69         internalField   uniform 0.01;
70         boundaryField
71         {
72             ".*"
73             {
74                 type            compressible::epsilonWallFunction;
75                 value           uniform 0.01;
76             }
77         }
78     }
80     k
81     {
82         internalField   uniform 0.1;
83         boundaryField
84         {
85             ".*"
86             {
87                 type            compressible::kqRWallFunction;
88                 value           uniform 0.1;
89             }
90         }
91     }
93     p_rgh
94     {
95         internalField   uniform 1e5;
96         boundaryField
97         {
98             ".*"
99             {
100                 type            buoyantPressure;
101                 value           uniform 1e5;
102             }
103         }
104     }
106     p
107     {
108         internalField   uniform 1e5;
109         boundaryField
110         {
111             ".*"
112             {
113                 type            calculated;
114                 value           uniform 1e5;
115             }
116         }
117     }
119     Qr
120     {
121         internalField   uniform 0;
122         boundaryField
123         {
124             ".*"
125             {
126                 type            greyDiffusiveRadiationViewFactor;
127                 emissivityMode  lookup;
128                 Qro             uniform 0;
129                 emissivity      uniform 1.0;
130                 value           uniform 0;
131             }
133             "bottomAir_to_.*"
134             {
135                 type            greyDiffusiveRadiationViewFactor;
136                 emissivityMode  solidThermo;
137                 Qro             uniform 0;
138                 value           uniform 0;
139             }
140         }
141     }
143     G
144     {
145         internalField   uniform 0;
146         boundaryField
147         {
148             ".*"
149             {
150                 type            MarshakRadiation;
151                 T               T;
152                 emissivityMode  lookup;
153                 emissivity      uniform 1.0;
154                 value           uniform 0;
155             }
157             "bottomAir_to_.*"
158             {
159                 type            MarshakRadiation;
160                 T               T;
161                 emissivityMode  solidThermo;
162                 value           uniform 0;
163             }
164         }
165     }
167     IDefault
168     {
169         internalField   uniform 0;
170         boundaryField
171         {
172             ".*"
173             {
174                 type            greyDiffusiveRadiation;
175                 T               T;
176                 emissivityMode  lookup;
177                 Qro             uniform 0;
178                 emissivity      uniform 1.0;
179                 value           uniform 0;
180             }
182             "bottomAir_to_.*"
183             {
184                 type            greyDiffusiveRadiation;
185                 T               T;
186                 emissivityMode  solidThermo;
187                 Qro             uniform 0;
188                 value           uniform 0;
189             }
190         }
191     }
196 // ************************************************************************* //