Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantBaffleSimpleFoam / circuitBoardCooling / system / changeDictionaryDict
blob0054240f5f14e6e0365e7b815683f3f8809693f9
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     alphat
20     {
21         boundaryField
22         {
23             "baffle.*"
24             {
25                 type            alphatWallFunction;
26                 value           uniform 0;
27             }
28         }
29     }
30     epsilon
31     {
32         boundaryField
33         {
34             "baffle.*"
35             {
36                 type            compressible::epsilonWallFunction;
37                 value           uniform 0.01;
38             }
39         }
40     }
41     k
42     {
43         boundaryField
44         {
45             "baffle.*"
46             {
47                 type            compressible::kqRWallFunction;
48                 value           uniform 0.01;
49             }
50         }
51     }
52     mut
53     {
54         boundaryField
55         {
56             "baffle.*"
57             {
58                 type            mutkWallFunction;
59                 value           uniform 0.0;
60             }
61         }
62     }
63     p
64     {
65         boundaryField
66         {
67              "baffle.*"
68             {
69                 type            calculated;
70                 value           uniform 101325;
71             }
72         }
73     }
74     p_rgh
75     {
76         boundaryField
77         {
78             "baffle.*"
79             {
80                 type            buoyantPressure;
81                 value           uniform 0;
82             }
83         }
84     }
85     T
86     {
87         boundaryField
88         {
89             "baffle.*"
90             {
91                 type        compressible::temperatureThermoBaffle1D<constSolidThermoPhysics>;
92                 baffleActivated yes;
93                 thickness       uniform 0.005;  // thickness [m]
94                 Qs              uniform 100;    // heat flux [W/m2]
95                 transport
96                 {
97                     K               1.0;
98                 }
99                 radiation
100                 {
101                     sigmaS          0;
102                     kappa           0;
103                     emissivity      0;
104                 }
105                 thermodynamics
106                 {
107                     Hf              0;
108                     Cp              0;
109                 }
110                 density
111                 {
112                     rho             0;
113                 }
114                 value           uniform 300;
115             }
116         }
117     }
118     U
119     {
120         boundaryField
121         {
122             "baffle.*"
123             {
124                 type            fixedValue;
125                 value           uniform (0 0 0);
126             }
127         }
128     }
131 // ************************************************************************* //