BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeaterRadiation / system / heater / changeDictionaryDict
blob37f8d7290411322447e9122d345d37313e1d5c74
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         minY
22         {
23             type            patch;
24         }
25         minZ
26         {
27             type            patch;
28         }
29         maxZ
30         {
31             type            patch;
32         }
33     }
35     T
36     {
37         internalField   uniform 300;
39         boundaryField
40         {
41             ".*"
42             {
43                 type            zeroGradient;
44                 value           uniform 300;
45             }
47             heater_to_topAir
48             {
49                 type            compressible::turbulentTemperatureRadCoupledMixed;
50                 Tnbr            T;
51                 K               solidThermo;
52                 QrNbr           Qr;
53                 Qr              none;
54                 KName           none;
55                 value           uniform 300;
56             }
58             heater_to_bottomAir
59             {
60                 type            compressible::turbulentTemperatureRadCoupledMixed;
61                 Tnbr            T;
62                 K               solidThermo;
63                 QrNbr           Qr;
64                 Qr              none;
65                 KName           none;
66                 value           uniform 300;
67             }
69             "heater_to_.*"
70             {
71                 type            compressible::turbulentTemperatureCoupledBaffleMixed;
72                 neighbourFieldName T;
73                 K               solidThermo;
74                 KName           none;
75                 value           uniform 300;
76             }
77             minY
78             {
79                 type            fixedValue;
80                 value           uniform 500;
81             }
82         }
83     }
85     Ypmma
86     {
87         internalField   uniform 0.5;
89         boundaryField
90         {
91             ".*"
92             {
93                 type            calculated;
94                 value           uniform 0.5;
95             }
96         }
98     }
100     Ychar
101     {
102         internalField   uniform 0.5;
104         boundaryField
105         {
106             ".*"
107             {
108                 type            calculated;
109                 value           uniform 0.5;
110             }
111         }
112     }
116 // ************************************************************************* //