blob: 702b265e7a30470d314face0362c79563e405dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Exam:6.4
clc;
clear;
close;
h=6.625*(10^(-34));//Planck's constant(in m2*kg/s)
c=3*10^8;//speed of light (in m/s)
L_r =150*8/100;//Lamp rating(in joule)
wavelength=4500*10^-10;//in meter
W=h*c/wavelength;//work function
N=L_r/W;//number of photons emitted by lamp per second
disp(N,'number of photons emitted by lamp per second=')
|