60 lines
1.6 KiB
Text
60 lines
1.6 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.6 |
|
||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
location "constant";
|
||
|
object radiationProperties;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
radiation on;
|
||
|
|
||
|
radiationModel fvDOM;
|
||
|
|
||
|
noRadiation
|
||
|
{
|
||
|
}
|
||
|
|
||
|
P1Coeffs
|
||
|
{
|
||
|
}
|
||
|
|
||
|
fvDOMCoeffs
|
||
|
{
|
||
|
nPhi 3; // azimuthal angles in PI/2 on X-Y.(from Y to X)
|
||
|
nTheta 5; // polar angles in PI (from Z to X-Y plane)
|
||
|
convergence 1e-3; // convergence criteria for radiation iteration
|
||
|
maxIter 10; // maximum number of iterations
|
||
|
}
|
||
|
|
||
|
// Number of flow iterations per radiation iteration
|
||
|
solverFreq 10;
|
||
|
|
||
|
absorptionEmissionModel constantAbsorptionEmission;
|
||
|
|
||
|
constantAbsorptionEmissionCoeffs
|
||
|
{
|
||
|
a a [ 0 -1 0 0 0 0 0 ] 0.01;
|
||
|
e e [ 0 -1 0 0 0 0 0 ] 0;
|
||
|
E E [ 1 -1 -3 0 0 0 0 ] 0;
|
||
|
}
|
||
|
|
||
|
scatterModel constantScatter;
|
||
|
|
||
|
constantScatterCoeffs
|
||
|
{
|
||
|
sigma sigma [ 0 -1 0 0 0 0 0 ] 0;
|
||
|
C C [ 0 0 0 0 0 0 0 ] 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|