Upgrade case file headers
[foam-extend-3.2.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / leftSolid / changeDictionaryDict
blob4546c24416c43b0c8b18b2abc3910a970115fcca
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         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             }
42             "leftSolid_to_.*"
43             {
44                 type            compressible::turbulentTemperatureCoupledBaffle;
45                 neighbourFieldName T;
46                 K               K;
47                 value           uniform 300;
48             }
49         }
50     }
52     rho
53     {
54         internalField   uniform 8000;
56         boundaryField
57         {
58             ".*"
59             {
60                 type            calculated;
61                 value           uniform 8000;
62             }
63         }
64     }
66     K
67     {
68         internalField   uniform 80;
70         boundaryField
71         {
72             ".*"
73             {
74                 type            zeroGradient;
75                 value           uniform 80;
76             }
77         }
78     }
80     cp
81     {
82         internalField   uniform 450;
84         boundaryField
85         {
86             ".*"
87             {
88                 type            zeroGradient;
89                 value           uniform 450;
90             }
91         }
92     }
95 // ************************************************************************* //