Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / snappyMultiRegionHeater / system / rightSolid / changeDictionaryDict
blob97d24ccd0aa643cb30d99a87f0b5f82d5ecd3a8e
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             }
42             "rightSolid_to_.*"
43             {
44                 type            compressible::turbulentTemperatureCoupledBaffleMixed;
45                 neighbourFieldName T;
46                 K               solidThermo;
47                 KName           none;
48                 value           uniform 300;
49             }
50         }
51     }
53     Ypmma
54     {
55         internalField   uniform 0.5;
58         boundaryField
59         {
60             ".*"
61             {
62                 type            calculated;
63                 value           uniform 0.5;
64             }
65         }
67     }
69     Ychar
70     {
71         internalField   uniform 0.5;
73         boundaryField
74         {
75             ".*"
76             {
77                 type            calculated;
78                 value           uniform 0.5;
79             }
80         }
81     }
84 // ************************************************************************* //