blob: 66468ad402fe1936f45f7c5571b5a49ce51f1d23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc;
clear;
D=0.82 //distance between the source and the screen in m
B=0.02 //distance between the source and the biprism in m
lambda=6900*10^-10 //wavelength in m
myu=1.5 //refractive index
alpha=%pi/180 //refracting angle in radian
//calculation
d=2*(myu-1)*alpha*B //distance between sources in m
Beta=(lambda*D)/d
mprintf("The fringe width is = %1.3e m",Beta)
|