Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeaterRadiation / system / leftSolid / changeDictionaryDict
blobc6401fcb54eb2c961e1fb2627047953e13a291c3
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         minZ
22         {
23             type            patch;
24         }
25         maxZ
26         {
27             type            patch;
28         }
29     }
31     T
32     {
33         internalField   uniform 300;
35         boundaryField
36         {
37             ".*"
38             {
39                 type            zeroGradient;
40                 value           uniform 300;
41             }
43             leftSolid_to_topAir
44             {
45                 type            compressible::turbulentTemperatureRadCoupledMixed;
46                 Tnbr            T;
47                 K               solidThermo;
48                 QrNbr           Qr;
49                 Qr              none;
50                 KName           none;
51                 value           uniform 300;
52             }
54             leftSolid_to_bottomAir
55             {
56                 type            compressible::turbulentTemperatureRadCoupledMixed;
57                 Tnbr            T;
58                 K               solidThermo;
59                 QrNbr           Qr;
60                 Qr              none;
61                 KName           none;
62                 value           uniform 300;
63             }
65             "leftSolid_to_.*"
66             {
67                 type            compressible::turbulentTemperatureCoupledBaffleMixed;
68                 neighbourFieldName T;
69                 K               solidThermo;
70                 KName           none;
71                 value           uniform 300;
72             }
73         }
74     }
76     Ypmma
77     {
78         internalField   uniform 0.5;
81         boundaryField
82         {
83             ".*"
84             {
85                 type            calculated;
86                 value           uniform 0.5;
87             }
88         }
90     }
92     Ychar
93     {
94         internalField   uniform 0.5;
96         boundaryField
97         {
98             ".*"
99             {
100                 type            calculated;
101                 value           uniform 0.5;
102             }
103         }
104     }
107 // ************************************************************************* //