blob: c468a4a8bf6dadd8bde0a526f3919c881badfa65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter 1 : Wave Optics
clear;
//Variable declaration
lamda=5893*10**-8 //wavelength
myu=1.55 //refractive index
n=10 //order of the fringe
//Calculations
t=(lamda*n)/(myu-1)/(10**-3)*10**3
//Result
mprintf("Thickness of sheet= %.2f*10**-8 cm",t)
|