fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / heatTransfer / buoyantSimpleRadiationFoam / hotRadiationRoomFvDOM / constant / radiationProperties
blob0d5ed6b6b069a1480562d2b57ad3719776541f22
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      radiationProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 radiation       on;
20 radiationModel  fvDOM;
22 noRadiation
26 P1Coeffs
30 fvDOMCoeffs
32     nPhi    3;          // azimuthal angles in PI/2 on X-Y.(from Y to X)
33     nTheta  5;          // polar angles in PI (from Z to X-Y plane)
34     convergence 1e-3;   // convergence criteria for radiation iteration
35     maxIter 10;         // maximum number of iterations
38 // Number of flow iterations per radiation iteration
39 solverFreq 10;
41 absorptionEmissionModel constantAbsorptionEmission;
43 constantAbsorptionEmissionCoeffs
45     a               a [ 0 -1 0 0 0 0 0 ] 0.01;
46     e               e [ 0 -1 0 0 0 0 0 ] 0;
47     E               E [ 1 -1 -3 0 0 0 0 ] 0;
50 scatterModel    constantScatter;
52 constantScatterCoeffs
54     sigma           sigma [ 0 -1 0 0 0 0 0 ] 0;
55     C               C [ 0 0 0 0 0 0 0 ] 0;
58 // ************************************************************************* //