blob: 81392063802ca6c55cbef43a59bc3c70be7d9ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable declaration:
Q = 5.0 //Radiation heat transfer (W)
E = 1.0 //Emissivity of filament
s = 5.669*10**-8 //Stefan-Boltzmann constant
T1 = 900.0+273.0 //Light bulb temperature (K)
T2 = 150.0+273.0 //Glass bulb temperature (K)
//Calculation:
A = Q/(E*s*(T1**4-T2**4)) //Surface area of the filament (m^2)
//Result:
printf("The surface area of the filament is : %.2f cm^2",A*10**4)
|