diff options
Diffstat (limited to '3875/CH4/EX4.3/Ex4_3.sce')
-rw-r--r-- | 3875/CH4/EX4.3/Ex4_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3875/CH4/EX4.3/Ex4_3.sce b/3875/CH4/EX4.3/Ex4_3.sce new file mode 100644 index 000000000..66468ad40 --- /dev/null +++ b/3875/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,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)
|