Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / multiRegionHeater / constant / heater / solidThermophysicalProperties
blob5643721cdaf89f4889725016ac2cbf619b750984
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      solidThermophysicalProperties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 thermoType constSolidThermo;
18 //thermoType isotropicKSolidThermo;
19 //thermoType directionalKSolidThermo;
21 constSolidThermoCoeffs
23     //- thermo properties
24     rho rho [1 -3  0  0 0 0 0] 8000;
25     Cp  Cp  [0  2 -2 -1 0 0 0] 450;
26     K   K   [1  1 -3 -1 0 0 0] 80;
28     //- radiation properties
29     kappa kappa [0 -1 0 0 0 0 0]            0;
30     sigmaS sigmaS [0 -1 0 0 0 0 0]          0;
31     emissivity  emissivity  [0 0 0 0 0 0 0] 0;
33     //- chemical properties
34     Hf  Hf  [0  2 -2  0 0 0 0] 0;
38 isotropicKSolidThermoCoeffs
40     //- thermo properties
41     TValues             (100 1000);
42     rhoValues           (1000 1700);
43     cpValues            (1700 1700);
44     KValues             (80 40);
46     //- radiation properties
47     emissivityValues    (1 1);
48     kappaValues         (0 0);
49     sigmaSValues        (0 0);
51     //- chemical properties
52     HfValues            (0 0);
56 directionalKSolidThermoCoeffs
58     //- does interpolation and directional K in coordinate system.
59     //  Specify multiple values, one for each temperature. Properties are
60     //  interpolated according to the local temperature.
62     //- thermo properties
63     TValues             (100 1000);
64     rhoValues           (1000 1700);
65     cpValues            (1700 1700);
66     KValues             ((10 10 10) (40 40 40));
68     coordinateSystem
69     {
70         origin  (-0.000062 0.000019 0.000039);
71         coordinateRotation
72         {
73             type    axes;
74             e1      (1 0 0);
75             e3      (-3.1807824e-6 -0.99813473 0.0610505);
76         }
77     }
79     //- chemical properties
80     HfValues            (1 1);
82     //- radiation properties
83     emissivityValues    (1 1);
84     kappaValues         (1 1);
85     sigmaSValues        (1 1);
88 solidComponents
90     pmma char
93 pmmaCoeffs
95     transport
96     {
97         K0      0.152;
98         n0      1.3;
99         Tref    300; //K0*pow(T/Tref_, n0))
100     }
101     radiation
102     {
103         sigmaS      0.0;
104         kappa       0.0;
105         emissivity  0.1;
106     }
107     thermodynamics
108     {
109         Hf      0;
110         C0      1462; // Cp = C0*(T/Tref)^n0
111         Tref    300;
112         n0      1.31;
113     }
114     density
115     {
116         rho     1114.0;
117     }
120 charCoeffs
122     transport
123     {
124         K0      0.4;
125         n0      1.3;
126         Tref    300; //K0*pow(T/Tref_, n0))
127     }
129     radiation
130     {
131         sigmaS      0.0;
132         kappa       0.0;
133         emissivity  0.0;
134     }
136     thermodynamics
137     {
138         Hf      0;
139         C0      611.0;; // Cp = C0*(T/Tref)^n0
140         Tref    300;
141         n0      1.31;
142     }
144     density
145     {
146         rho     11.5;
147     }
150 // ************************************************************************* //