Upgrade case file headers
[foam-extend-3.2.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / bottomAir / changeDictionaryDict
blobb2ca54ebbd649d0da085f2157559c55e36b0d655
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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);
35         boundaryField
36         {
37             ".*"
38             {
39                 type            fixedValue;
40                 value           uniform (0 0 0);
41             }
42         }
43     }
45     T
46     {
47         internalField   uniform 300;
49         boundaryField
50         {
51             ".*"
52             {
53                 type            zeroGradient;
54             }
56             "bottomAir_to_.*"
57             {
58                 type            compressible::turbulentTemperatureCoupledBaffle;
59                 neighbourFieldName T;
60                 K               K;
61                 value           uniform 300;
62             }
63         }
64     }
66     epsilon
67     {
68         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;
84         boundaryField
85         {
86             ".*"
87             {
88                 type            compressible::kqRWallFunction;
89                 value           uniform 0.1;
90             }
91         }
92     }
94     p
95     {
96         internalField   uniform 100000;
98         boundaryField
99         {
100             ".*"
101             {
102                 type            buoyantPressure;
103                 value           1e5;
104             }
105         }
106     }
109 // ************************************************************************* //