36 lines
905 B
C++
36 lines
905 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant/gas";
|
|
object radiationProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
radiationModel P1;
|
|
|
|
solverFreq 1;
|
|
|
|
absorptionEmissionModel constant;
|
|
|
|
constantCoeffs
|
|
{
|
|
absorptivity 0.01;
|
|
emissivity 0.01;
|
|
E 0;
|
|
}
|
|
|
|
scatterModel none;
|
|
|
|
sootModel none;
|
|
|
|
|
|
// ************************************************************************* //
|