summaryrefslogtreecommitdiff
path: root/1865/CH4/EX4.6/prob_6.sce
blob: 0b896b16b7cdca88101d82e67beeeaea60d783a4 (plain)
1
2
3
4
5
6
7
8
9
10
11

//Problem 6
//Calculate the temporal coherence length for mercury vapour lamp 
clear
clc
w=546.1//wavelength (in nm)
dv=6*(10)^8//emission bandwidth (in Hz)
c=3*(10)^8//speed of light (in m/s)
dw=((w*(10)^(-9))^2*(dv))/c;//dw (in m)
l=(w*(10)^(-9))^2/dw// temporal length (in m)
printf('temporal length = %.2f m ',l)