blob: cb6ac8fabb3fc1ca3d28897179cb4d4b2f732474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clear
//
//
//
//Variable declaration
lamda=6000*10**-8 //wavelength(cm)
n=1
mew=1.33 //refractive index
r=0*%pi/180 //angle of incidence(radian)
//Calculation
t=n*lamda/(2*mew*cos(r)) //thickness of thinnest film(cm)
//Result
printf("\n thickness of thinnest film is %0.4f *10**-5 cm",t*10**5)
printf("\n answer given in the book is wrong")
|