blob: 612f89e29083e746940e8f1f42625fc302f8c1f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
clear;
t=3 //thickness of air cell in cm
delta_myu=0.000230 //difference in pressure
lambda=5.46*10^-5 //wavelength in cm
//calculation
change_in_path=t*delta_myu // change in one way path in cm
n=(2*change_in_path)/lambda
mprintf("The no of fringes passing through the field of view is = %d",n)
|