blob: e5fc30b16acc58a7c381e7699e41a890d1b725cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//
//
//
//Variable declaration
lamda=6000*10**-8 //wavelength(cm)
n=1
mew=1.5 //refractive index
r=50*%pi/180 //angle of refraction(radian)
//Calculation
t=n*lamda/(2*mew*cos(r)) //least thickness of glass plate(cm)
//Result
printf("\n least thickness of glass plate is %0.2f *10**-5 cm",t*10**5)
|