blob: 4056482d417dc2cfee627556e2cac19641b6d7b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//
//
//
//Variable declaration
D=50 //separation between screen and slit(cm)
x=0.2 //fringe shift(cm)
d=0.1 //separation between slits(cm)
mew=1.58 //refractive index
//Calculation
tow=x*d/(D*(mew-1)) //thickness of mica sheet(cm)
//Result
printf("\n thickness of mica sheet is %0.3f *10**-4 cm",tow*10**4)
|