BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / topAir / changeDictionaryDict
blob82bcacac267ba6198b44ee0d425d9c97471ff86f
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     U
20     {
21         internalField   uniform (0.1 0 0);
23         boundaryField
24         {
25             ".*"
26             {
27                 type            fixedValue;
28                 value           uniform (0 0 0);
29             }
30             minX
31             {
32                 type            fixedValue;
33                 value           uniform ( 0.1 0 0 );
34             }
35             maxX
36             {
37                 type            inletOutlet;
38                 inletValue      uniform ( 0 0 0 );
39                 value           uniform ( 0.1 0 0 );
40             }
41         }
42     }
44     T
45     {
46         internalField   uniform 300;
48         boundaryField
49         {
50             ".*"
51             {
52                 type            zeroGradient;
53             }
55             minX
56             {
57                 type            fixedValue;
58                 value           uniform 300;
59             }
60             maxX
61             {
62                 type            inletOutlet;
63                 inletValue      uniform 300;
64                 value           uniform 300;
65             }
67             "topAir_to_.*"
68             {
69                 type            compressible::turbulentTemperatureCoupledBaffleMixed;
70                 neighbourFieldName T;
71                 K               basicThermo;
72                 KName           none;
73                 value           uniform 300;
74             }
75         }
76     }
78     epsilon
79     {
80         internalField   uniform 0.01;
82         boundaryField
83         {
84             ".*"
85             {
86                 type            compressible::epsilonWallFunction;
87                 value           uniform 0.01;
88             }
90             minX
91             {
92                 type            fixedValue;
93                 value           uniform 0.01;
94             }
95             maxX
96             {
97                 type            inletOutlet;
98                 inletValue      uniform 0.01;
99                 value           uniform 0.01;
100             }
101         }
102     }
104     k
105     {
106         internalField   uniform 0.1;
108         boundaryField
109         {
110             ".*"
111             {
112                 type            compressible::kqRWallFunction;
113                 value           uniform 0.1;
114             }
116             minX
117             {
118                 type            fixedValue;
119                 value           uniform 0.1;
120             }
121             maxX
122             {
123                 type            inletOutlet;
124                 inletValue      uniform 0.1;
125                 value           uniform 0.1;
126             }
127         }
128     }
130     p_rgh
131     {
132         internalField   uniform 1e5;
134         boundaryField
135         {
136             ".*"
137             {
138                 type            buoyantPressure;
139                 value           uniform 1e5;
140             }
142             maxX
143             {
144                 type            fixedValue;
145                 value           uniform 1e5;
146             }
147         }
148     }
150     p
151     {
152         internalField   uniform 1e5;
154         boundaryField
155         {
156             ".*"
157             {
158                 type            calculated;
159                 value           uniform 1e5;
160             }
162             maxX
163             {
164                 type            calculated;
165                 value           uniform 1e5;
166             }
167         }
168     }
171 // ************************************************************************* //