fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / system / leftSolid / changeDictionaryDict
blob6858d75a662cef6aa93cc5266c6dba4d0d64a13e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      changePatchTypeDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dictionaryReplacement
19     T
20     {
21         internalField   uniform 300;
23         boundaryField
24         {
25             minX
26             {
27                 type            zeroGradient;
28             }
29             minZ
30             {
31                 type            zeroGradient;
32             }
33             maxZ
34             {
35                 type            zeroGradient;
36             }
37             leftSolid_to_bottomAir
38             {
39                 type            solidWallMixedTemperatureCoupled;
40                 neighbourRegionName bottomAir;
41                 neighbourPatchName bottomAir_to_leftSolid;
42                 neighbourFieldName T;
43                 K               K;
44                 value           uniform 300;
46             }
47             leftSolid_to_heater
48             {
49                 type            solidWallMixedTemperatureCoupled;
50                 neighbourRegionName heater;
51                 neighbourPatchName heater_to_leftSolid;
52                 neighbourFieldName T;
53                 K               K;
54                 value           uniform 300;
55             }
56             leftSolid_to_topAir
57             {
58                 type            solidWallMixedTemperatureCoupled;
59                 neighbourRegionName topAir;
60                 neighbourPatchName topAir_to_leftSolid;
61                 neighbourFieldName T;
62                 K               K;
63                 value           uniform 300;
64             }
65         }
66     }
68     rho
69     {
70         internalField   uniform 8000;
72         boundaryField
73         {
74             minX
75             {
76                 type            zeroGradient;
77             }
78             minZ
79             {
80                 type            zeroGradient;
81             }
82             maxZ
83             {
84                 type            zeroGradient;
85             }
86             leftSolid_to_bottomAir
87             {
88                 type            zeroGradient;
89             }
90             leftSolid_to_heater
91             {
92                 type            zeroGradient;
93             }
94             leftSolid_to_topAir
95             {
96                 type            zeroGradient;
97             }
98         }
99     }
101     K
102     {
103         internalField   uniform 80;
105         boundaryField
106         {
107             minX
108             {
109                 type            zeroGradient;
110             }
111             minZ
112             {
113                 type            zeroGradient;
114             }
115             maxZ
116             {
117                 type            zeroGradient;
118             }
119             leftSolid_to_bottomAir
120             {
121                 type            zeroGradient;
122             }
123             leftSolid_to_heater
124             {
125                 type            zeroGradient;
126             }
127             leftSolid_to_topAir
128             {
129                 type            zeroGradient;
130             }
131         }
132     }
134     cp
135     {
136         internalField   uniform 450;
138         boundaryField
139         {
140             minX
141             {
142                 type            zeroGradient;
143             }
144             minZ
145             {
146                 type            zeroGradient;
147             }
148             maxZ
149             {
150                 type            zeroGradient;
151             }
152             leftSolid_to_bottomAir
153             {
154                 type            zeroGradient;
155             }
156             leftSolid_to_heater
157             {
158                 type            zeroGradient;
159             }
160             leftSolid_to_topAir
161             {
162                 type            zeroGradient;
163             }
164         }
165     }
168 // ************************************************************************* //