summaryrefslogtreecommitdiff
path: root/1397/CH1/EX1.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1397/CH1/EX1.3
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 '1397/CH1/EX1.3')
-rwxr-xr-x1397/CH1/EX1.3/1_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1397/CH1/EX1.3/1_3.sce b/1397/CH1/EX1.3/1_3.sce
new file mode 100755
index 000000000..227d46298
--- /dev/null
+++ b/1397/CH1/EX1.3/1_3.sce
@@ -0,0 +1,10 @@
+//clc();
+clear;
+// To determine the slit seperation in Young's double slit experiment
+lambda=5100*10^(-8); //A source of light in centimetres
+D=200; // Seperation between screen and slit in centimetres
+beeta=0.01; // Overall seperation from double slit in metres
+d=(lambda*D)/beeta;
+printf("The seperation between slits if the source of light is incident from a narrow slit on a double slit is %f m",d);
+
+