initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / leftSolid / changeDictionaryDict
bloba895a0420e2baf717709f43312645cfa32ac6605
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://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         leftSolid_to_bottomAir
22         {
23             offset          ( 0 0 0 );
24             sampleMode      nearestPatchFace;
25             sampleRegion    bottomAir;
26             samplePatch     bottomAir_to_leftSolid;
27         }
28         leftSolid_to_heater
29         {
30             offset          ( 0 0 0 );
31             sampleMode      nearestPatchFace;
32             sampleRegion    heater;
33             samplePatch     heater_to_leftSolid;;
34         }
35         leftSolid_to_topAir
36         {
37             offset          ( 0 0 0 );
38             sampleMode      nearestPatchFace;
39             sampleRegion    topAir;
40             samplePatch     topAir_to_leftSolid;;
41         }
42     }
44     T
45     {
46         internalField   uniform 300;
48         boundaryField
49         {
50             minX
51             {
52                 type            zeroGradient;
53             }
54             minZ
55             {
56                 type            zeroGradient;
57             }
58             maxZ
59             {
60                 type            zeroGradient;
61             }
62             leftSolid_to_bottomAir
63             {
64                 type            solidWallMixedTemperatureCoupled;
65                 neighbourFieldName T;
66                 K               K;
67                 value           uniform 300;
69             }
70             leftSolid_to_heater
71             {
72                 type            solidWallMixedTemperatureCoupled;
73                 neighbourFieldName T;
74                 K               K;
75                 value           uniform 300;
76             }
77             leftSolid_to_topAir
78             {
79                 type            solidWallMixedTemperatureCoupled;
80                 neighbourFieldName T;
81                 K               K;
82                 value           uniform 300;
83             }
84         }
85     }
87     rho
88     {
89         internalField   uniform 8000;
91         boundaryField
92         {
93             minX
94             {
95                 type            zeroGradient;
96             }
97             minZ
98             {
99                 type            zeroGradient;
100             }
101             maxZ
102             {
103                 type            zeroGradient;
104             }
105             leftSolid_to_bottomAir
106             {
107                 type            zeroGradient;
108             }
109             leftSolid_to_heater
110             {
111                 type            zeroGradient;
112             }
113             leftSolid_to_topAir
114             {
115                 type            zeroGradient;
116             }
117         }
118     }
120     K
121     {
122         internalField   uniform 80;
124         boundaryField
125         {
126             minX
127             {
128                 type            zeroGradient;
129             }
130             minZ
131             {
132                 type            zeroGradient;
133             }
134             maxZ
135             {
136                 type            zeroGradient;
137             }
138             leftSolid_to_bottomAir
139             {
140                 type            zeroGradient;
141             }
142             leftSolid_to_heater
143             {
144                 type            zeroGradient;
145             }
146             leftSolid_to_topAir
147             {
148                 type            zeroGradient;
149             }
150         }
151     }
153     cp
154     {
155         internalField   uniform 450;
157         boundaryField
158         {
159             minX
160             {
161                 type            zeroGradient;
162             }
163             minZ
164             {
165                 type            zeroGradient;
166             }
167             maxZ
168             {
169                 type            zeroGradient;
170             }
171             leftSolid_to_bottomAir
172             {
173                 type            zeroGradient;
174             }
175             leftSolid_to_heater
176             {
177                 type            zeroGradient;
178             }
179             leftSolid_to_topAir
180             {
181                 type            zeroGradient;
182             }
183         }
184     }
187 // ************************************************************************* //