mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
so that the specification of the name and dimensions are optional in property dictionaries. Update tutorials so that the name of the dimensionedScalar property is no longer duplicated but optional dimensions are still provided and are checked on read.
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object radiationProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
radiation on;
|
|
|
|
radiationModel fvDOM;
|
|
|
|
|
|
fvDOMCoeffs
|
|
{
|
|
nPhi 2; // azimuthal angles in PI/2 on X-Y.(from Y to X)
|
|
nTheta 2; // polar angles in PI (from Z to X-Y plane)
|
|
convergence 1e-2; // convergence criteria for radiation iteration
|
|
maxIter 3; // maximum number of iterations
|
|
cacheDiv true; // cache the div of the RTE equation.
|
|
}
|
|
|
|
// Number of flow iterations per radiation iteration
|
|
solverFreq 10;
|
|
|
|
absorptionEmissionModel constantAbsorptionEmission;
|
|
|
|
constantAbsorptionEmissionCoeffs
|
|
{
|
|
absorptivity absorptivity [0 -1 0 0 0 0 0] 0.1;
|
|
emissivity emissivity [0 -1 0 0 0 0 0] 0.1;
|
|
E E [1 -1 -3 0 0 0 0] 0;
|
|
}
|
|
|
|
greyMeanAbsorptionEmissionSootCoeffs
|
|
{
|
|
|
|
lookUpTableFileName none;
|
|
EhrrCoeff 0.4;
|
|
}
|
|
|
|
scatterModel none;
|
|
|
|
|
|
sootModel none;
|
|
|
|
|
|
// ************************************************************************* //
|