summaryrefslogtreecommitdiff
path: root/965/CH11/EX11.3/3.sci
blob: 8b1ef396dbc2eefc06a0dc84d905a8883deca741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clc;
clear all;
disp("monochromatic emmisive power")
T=2500+273;//K
l=1.2*10^(-6);// m
e=0.9;
sigma=5.67*10^(-8);
C1=3.742*10^(-15);// W m^4/m2
C2=1.4388*10^(-2);// mK
Elb=(C1*l^(-5))/(exp(C2/(l*T))-1);// W/m^2
disp("W/m^2",Elb,"monochromatic emmisive power at l= 1.2 mu m = ")
lmax=2898/T;
disp("mu m",lmax,"wavelength at which the emission is maximum is")
Elbmax = (1.285*10^(-5))*T^5;// W/m^2
disp("W/m^2 per meter length",Elbmax,"Maximum emissive power =")
Eb=sigma*T^4;//W/m^2
disp("W/m^2",Eb,"total emissive power =")
Eeb= e*Eb;//W/m^2
disp("W/m^2",Eeb,"Total emissive power with emissivity =")