blob: 2c02b4f6387de98f21eeb4efa0ef03538edb49cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clc
//
//
//
//Variable declaration
mu=4/3 //refractive index
t=1.5 //thickness
cosr=0.7603
lambdaa=5*10**-7 //Wavelength
//Calculations
n=(2*mu*t*cosr*10**-6)/lambdaa
//Result
printf("\n The order of interference of dark band is %i ",n)
|