Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / bottomAir / changeDictionaryDict
blob60934a30fdcdbc52ce0197212223432185eaf333
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.com                      |
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::turbulentTemperatureCoupledBaffleMixed;
59                 neighbourFieldName T;
60                 K               basicThermo;
61                 KName           none;
62                 value           uniform 300;
63             }
64         }
65     }
67     epsilon
68     {
69         internalField   uniform 0.01;
71         boundaryField
72         {
73             ".*"
74             {
75                 type            compressible::epsilonWallFunction;
76                 value           uniform 0.01;
77             }
78         }
79     }
81     k
82     {
83         internalField   uniform 0.1;
85         boundaryField
86         {
87             ".*"
88             {
89                 type            compressible::kqRWallFunction;
90                 value           uniform 0.1;
91             }
92         }
93     }
95     p_rgh
96     {
97         internalField   uniform 1e5;
99         boundaryField
100         {
101             ".*"
102             {
103                 type            buoyantPressure;
104                 value           uniform 1e5;
105             }
106         }
107     }
109     p
110     {
111         internalField   uniform 1e5;
113         boundaryField
114         {
115             ".*"
116             {
117                 type            calculated;
118                 value           uniform 1e5;
119             }
120         }
121     }
124 // ************************************************************************* //