ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / combustion / fireFoam / les / oppositeBurningPanels / constant / radiationProperties
blobe648d06f50e4cb1ae8ddd537c1732debfcf8dabb
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 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version     2.0;
12     format      ascii;
13     class       dictionary;
14     location    "constant";
15     object      radiationProperties;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 radiation       on;
21 radiationModel  fvDOM;
23 noRadiation
27 P1Coeffs
31 fvDOMCoeffs
33     nPhi    3;          // azimuthal angles in PI/2 on X-Y.(from Y to X)
34     nTheta  6;          // polar angles in PI (from Z to X-Y plane)
35     convergence 1e-4;   // convergence criteria for radiation iteration
36     maxIter 4;         // maximum number of iterations
39 // Number of flow iterations per radiation iteration
40 solverFreq 10;
42 //absorptionEmissionModel constantAbsorptionEmission;
43 absorptionEmissionModel greyMeanAbsorptionEmission;
45 constantAbsorptionEmissionCoeffs
47     a               a [ 0 -1 0 0 0 0 0 ] 0.01;
48     e               e [ 0 -1 0 0 0 0 0 ] 0.01;
49     E               E [ 1 -1 -3 0 0 0 0 ] 0;
52 greyMeanAbsorptionEmissionCoeffs
54     lookUpTableFileName     none;
56     EhrrCoeff               0.2;
58     CO2
59     {
60         Tcommon         300;   //Common Temp
61         invTemp         true;   //Is the polynomio using inverse temperature.
62         Tlow            200;   //Low Temp
63         Thigh           2000;  //High Temp
65         loTcoeffs       //coefss for T < Tcommon
66         (
67             0           //  a0            +
68             0           //  a1*T          +
69             0           //  a2*T^(+/-)2   +
70             0           //  a3*T^(+/-)3   +
71             0           //  a4*T^(+/-)4   +
72             0           //  a5*T^(+/-)5   +
73         );
74         hiTcoeffs        //coefss for T > Tcommon
75         (
76             18.741
77             -121.31e3
78             273.5e6
79             -194.05e9
80             56.31e12
81             -5.8169e15
82         );
84     }
86     H2O
87     {
88         Tcommon         300;
89         invTemp         true;
90         Tlow            200;
91         Thigh           2000;
93         loTcoeffs
94         (
95             0
96             0
97             0
98             0
99             0
100             0
101         );
102         hiTcoeffs
103         (
104             -0.23093
105             -1.12390e3
106              9.4153e6
107             -2.99885e9
108              0.51382e12
109             -1.868e10
110         );
111     }
113     C3H8//CH4
114     {
115         Tcommon         300;
116         Tlow            200;
117         Thigh           2000;
118         invTemp         false;
120         loTcoeffs
121         (
122             0
123             0
124             0
125             0
126             0
127             0
128         );
129         hiTcoeffs
130         (
131             6.6334
132             -0.0035686
133             1.6682e-8
134             2.5611e-10
135             -2.6558e-14
136             0
137         );
138     }
142 scatterModel    constantScatter;
144 constantScatterCoeffs
146     sigma           sigma [ 0 -1 0 0 0 0 0 ] 0;
147     C               C [ 0 0 0 0 0 0 0 ] 0;
151 // ************************************************************************* //