summaryrefslogtreecommitdiff
path: root/1871/CH4/EX4.14/Ch04Ex14.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1871/CH4/EX4.14/Ch04Ex14.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1871/CH4/EX4.14/Ch04Ex14.sce')
-rwxr-xr-x1871/CH4/EX4.14/Ch04Ex14.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1871/CH4/EX4.14/Ch04Ex14.sce b/1871/CH4/EX4.14/Ch04Ex14.sce
new file mode 100755
index 000000000..9533006f4
--- /dev/null
+++ b/1871/CH4/EX4.14/Ch04Ex14.sce
@@ -0,0 +1,13 @@
+// Scilab code Ex4.14 : Pg:155 (2008)
+clc;clear;
+D = 110; // Distance between the biprism and narrow slit, cm
+Lambda = 5500e-08; // Wavelength of light, cm
+mu = 1.5; // refractive index of glass biprism
+a = 10; // Distance of slit from biprism, cm
+alpha = 2*%pi/180; // Angle between the inclined faces and base of prism, degree
+d = a*(mu-1)*alpha; // Separation between two virtual sources, cm
+omega = D*Lambda/(2*d); // Fringe width at a distance of one meter from biprism, cm
+printf("\nThe width of the fringes in the eye-piece from the biprism = %6.4f cm", omega);
+
+// Result
+// The width of the fringes in the eye-piece from the biprism = 0.0173 cm \ No newline at end of file