BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionSimpleFoam / multiRegionHeater / constant / heater / solidThermophysicalProperties
blob0922855d3bdc96d5bce36f8627465b8403359a4c
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     }
104     radiation
105     {
106         sigmaS      0.0;
107         kappa       0.0;
108         emissivity  0.1;
109     }
111     thermodynamics
112     {
113         Hf      0;
114         C0      1462; // Cp = C0*(T/Tref)^n0
115         Tref    300;
116         n0      1.31;
117     }
119     density
120     {
121         rho     1114.0;
122     }
125 charCoeffs
127     transport
128     {
129         K0      0.4;
130         n0      1.3;
131         Tref    300; //K0*pow(T/Tref_, n0))
132     }
134     radiation
135     {
136         sigmaS      0.0;
137         kappa       0.0;
138         emissivity  0.0;
139     }
141     thermodynamics
142     {
143         Hf      0;
144         C0      611.0; // Cp = C0*(T/Tref)^n0
145         Tref    300;
146         n0      1.31;
147     }
149     density
150     {
151         rho     11.5;
152     }
155 // ************************************************************************* //