BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / snappyMultiRegionHeater / constant / heater / solidThermophysicalProperties
blob5eeadca215c3f92709742ca92bd5ed4cb2c09b3d
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.org                      |
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;
20 //thermoType solidMixtureThermo<multiComponentSolidMixture<exponentialSolidTransport<constSolidRad<exponentialSolidThermo<constRho>>>>>;
23 constSolidThermoCoeffs
25     //- thermo properties
26     rho rho [1 -3  0  0 0 0 0] 8000;
27     Cp  Cp  [0  2 -2 -1 0 0 0] 450;
28     K   K   [1  1 -3 -1 0 0 0] 80;
30     //- radiation properties
31     kappa kappa [0 -1 0 0 0 0 0]            0;
32     sigmaS sigmaS [0 -1 0 0 0 0 0]          0;
33     emissivity  emissivity  [0 0 0 0 0 0 0] 1;
35     //- chemical properties
36     Hf  Hf  [0  2 -2  0 0 0 0] 1;
40 isotropicKSolidThermoCoeffs
42     //- thermo properties
43     TValues             (100 1000);
44     rhoValues           (1000 1700);
45     cpValues            (1700 1700);
46     KValues             (80 40);
48     //- radiation properties
49     emissivityValues    (1 1);
50     kappaValues         (0 0);
51     sigmaSValues        (0 0);
53     //- chemical properties
54     HfValues            (1 1);
58 directionalKSolidThermoCoeffs
60     //- does interpolation and directional K in coordinate system.
61     //  Specify multiple values, one for each temperature. Properties are
62     //  interpolated according to the local temperature.
64     //- thermo properties
65     TValues             (100 1000);
66     rhoValues           (1700 1700);
67     cpValues            (1700 1700);
68     KValues             ((10 10 10) (40 40 40));
70     coordinateSystem
71     {
72         origin  (-0.000062 0.000019 0.000039);
73         coordinateRotation
74         {
75             type    axes;
76             e1      (1 0 0);
77             e3      (-3.1807824e-6 -0.99813473 0.0610505);
78         }
79     }
81     //- chemical properties
82     HfValues            (1 1);
84     //- radiation properties
85     emissivityValues    (1 1);
86     kappaValues         (1 1);
87     sigmaSValues        (1 1);
90 solidComponents
92     pmma char
95 pmmaCoeffs
97     transport
98     {
99         K0      0.152;
100         n0      1.3;
101         Tref    300; //K0*pow(T/Tref_, n0))
102     }
103     radiation
104     {
105         sigmaS      0.0;
106         kappa       0.0;
107         emissivity  0.1;
108     }
109     thermodynamics
110     {
111         Hf      0;
112         C0      1462; // Cp = C0*(T/Tref)^n0
113         Tref    300;
114         n0      1.31;
115     }
116     density
117     {
118         rho     1114.0;
119     }
122 charCoeffs
124     transport
125     {
126         K0      0.4;
127         n0      1.3;
128         Tref    300; //K0*pow(T/Tref_, n0))
129     }
130     radiation
131     {
132         sigmaS      0.0;
133         kappa       0.0;
134         emissivity  0.0;
135     }
136     thermodynamics
137     {
138         Hf      0;
139         C0      611.0;; // Cp = C0*(T/Tref)^n0
140         Tref    300;
141         n0      1.31;
142     }
143     density
144     {
145         rho     11.5;
146     }
149 // ************************************************************************* //