FIX: Tutorials refering to {b,K} instead of {bprog,Kcond}
[freefoam.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / system / leftSolid / changeDictionaryDict
blob3666f2fbf3014b08f82cf206c28a00d4ed4362e5
1 /*------------------------------*- FOAMDict -*-------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.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               Kcond;
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     Kcond
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 // ****************** vim: set ft=foamdict sw=4 sts=4 et: ****************** //