#include <codecogs/engineering/heat_transfer/radiation/flow_enclosed.h>
using namespace Engineering::Heat_Transfer::Radiation;
| double | flow_enclosed (double A1, double A2, double T1, double T2, double e1, double e2)[inline] Computes the radiative heat flow between an enclosing surface and a body found inside it. | |
| Real | cc_flow_enclosed (Real A1, Real A2, Real T1, Real T2, Real e1, Real e2) This function is available as a Microsoft Excel add-in. |
| doubleflow_enclosed( | double | A1 | |
| double | A2 | ||
| double | T1 | ||
| double | T2 | ||
| double | e1 | ||
| double | e2 | )[inline] |
![\displaystyle q = e_{1-2} \,\, C_0 \left[\left(\frac{T_2}{100}\right)^4 -
\left(\frac{T_1}{100}\right)^4\right]
\qquad \left[\frac{W}{m^2}\right]
\displaystyle q = e_{1-2} \,\, C_0 \left[\left(\frac{T_2}{100}\right)^4 -
\left(\frac{T_1}{100}\right)^4\right]
\qquad \left[\frac{W}{m^2}\right]](/latexrender/sites/unknown/87032d2cc240e070e79c3ccb0067a679.gif)

#include <codecogs/engineering/heat_transfer/radiation/flow_enclosed.h> #include <stdio.h> int main() { // the temperature of the oxidated steel body double T1 = 873.16; // the temperature of the fire brick surface double T2 = 1373.16; // the emission factor of the steel body double e1 = 0.79; // the emission factor of the fire brick surface double e2 = 0.75; // the area of the spherical steel body double A1 = 3.1416; // the area of the fire brick enclosing surface double A2 = 20; // display radiative heat flow between the two enclosed surfaces printf("Radiative heat flow = %.5lf W per sq. meter\n", Engineering::Heat_Transfer::Radiation::flow_enclosed (A1, A2, T1, T2, e1, e2)); return 0; }
Radiative heat flow = 127904.73453 W per sq. meter
| A1 | the area of the enclosed body (square meter) |
| A2 | the area of the enclosing surface (square meter) |
| T1 | the absolute temperature of the enclosed body (Kelvin) |
| T2 | the absolute temperature of the enclosing surface (Kelvin) |
| e1 | the emissivity factor of the enclosed body |
| e2 | the emissivity factor of the enclosing surface |