BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / circuitBoardCooling / system / changeDictionaryDict.baffleRegion
blobf1091bc68bf307d56b2a4888ba422a0c0f31f4ba
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     alphat
20     {
21         boundaryField
22         {
23             "region0_to_.*"
24             {
25                 type            alphatWallFunction;
26                 value           uniform 0;
27             }
28         }
29     }
30     epsilon
31     {
32         boundaryField
33         {
34             "region0_to_.*"
35             {
36                 type            compressible::epsilonWallFunction;
37                 value           uniform 0.01;
38             }
39         }
40     }
41     k
42     {
43         boundaryField
44         {
45             "region0_to_.*"
46             {
47                 type            compressible::kqRWallFunction;
48                 value           uniform 0.01;
49             }
51         }
52     }
53     mut
54     {
55         boundaryField
56         {
57             "region0_to_.*"
58             {
59                 type            mutkWallFunction;
60                 value           uniform 0.0;
61             }
62         }
63     }
64     p
65     {
66         boundaryField
67         {
68             "region0_to_.*"
69             {
70                 type            calculated;
71                 value           $internalField;
72             }
73         }
74     }
75     p_rgh
76     {
77         boundaryField
78         {
79             "region0_to_.*"
80             {
81                 type            buoyantPressure;
82                 value           $internalField;
83             }
85         }
86     }
87     T
88     {
89         boundaryField
90         {
92             "region0_to.*"
93             {
94                 type                compressible::temperatureThermoBaffle;
96                 // Coupled BC.
97                 neighbourFieldName  T;
98                 K                   basicThermo;
99                 KName               none;
102                 // Thermo baffle model
103                 thermoBaffleModel   thermoBaffle2D;
104                 regionName          baffleRegion;
105                 infoOutput          yes;
106                 active              yes;
107                 thermoBaffle2DCoeffs
108                 {
109                 }
112                 // Solid thermo
113                 thermoType constSolidThermo;
115                 constSolidThermoCoeffs
116                 {
117                     //- thermo properties
118                     rho rho [1 -3  0  0 0 0 0]              80;
119                     Cp  Cp  [0  2 -2 -1 0 0 0]              15;
120                     K   K   [1  1 -3 -1 0 0 0]              0.01;
122                     //- radiative properties
123                     kappa kappa [0 -1 0 0 0 0 0]            0;
124                     sigmaS sigmaS [0 -1 0 0 0 0 0]          0;
125                     emissivity  emissivity  [0 0 0 0 0 0 0] 1;
127                     //- chemical properties
128                     Hf  Hf  [0  2 -2  0 0 0 0]              0;
129                 }
131                 value               uniform 300;
132             }
133         }
134     }
135     U
136     {
137         boundaryField
138         {
139             "region0_to_.*"
140             {
141                 type            fixedValue;
142                 value           uniform (0 0 0);
143             }
145         }
146     }
149 // ************************************************************************* //