| Contents |
#include <codecogs/engineering/heat_transfer/radiation/energy.h>
using namespace Engineering::Heat_Transfer::Radiation;
| double | energy (double T, double e = 1.0)[inline] Computes the total energy radiated by a body with given parameters. | |
| Real | cc_energy (Real T, Real e) This function is available as a Microsoft Excel add-in. |
| doubleenergy( | double | T | |
| double | e = 1.0 | )[inline] |
#include <codecogs/engineering/heat_transfer/radiation/energy.h> #include <stdio.h> int main() { // the temperature of the Wolfram filament double T = 3573.16; // emissivity factor of the filament double e = 0.39; // display the total radiative energy printf("Energy = %.5lf kW per sq. meter\n", Engineering::Heat_Transfer::Radiation::energy(T, e)/1000.0); return 0; }
Energy = 3603.96794 kW per sq. meter
| T | the absolute temperature of the body (Kelvin) |
| e | Default value = 1.0 |