Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / heater / changeDictionaryDict
blobd107dcfecc42e5f24b876f576caca55e200b15af
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         minY
22         {
23             type            patch;
24         }
25         minZ
26         {
27             type            patch;
28         }
29         maxZ
30         {
31             type            patch;
32         }
33     }
35     T
36     {
37         internalField   uniform 300;
39         boundaryField
40         {
41             ".*"
42             {
43                 type            zeroGradient;
44                 value           uniform 300;
45             }
46             "heater_to_.*"
47             {
48                 type            compressible::turbulentTemperatureCoupledBaffleMixed;
49                 neighbourFieldName T;
50                 K               solidThermo;
51                 KName           none;
52                 value           uniform 300;
53             }
54             minY
55             {
56                 type            fixedValue;
57                 value           uniform 500;
58             }
59         }
60     }
62     Ypmma
63     {
64         internalField   uniform 0.5;
67         boundaryField
68         {
69             ".*"
70             {
71                 type            calculated;
72                 value           uniform 0.5;
73             }
74         }
76     }
78     Ychar
79     {
80         internalField   uniform 0.5;
82         boundaryField
83         {
84             ".*"
85             {
86                 type            calculated;
87                 value           uniform 0.5;
88             }
89         }
90     }
94 // ************************************************************************* //