summaryrefslogtreecommitdiff
path: root/2243/CH3/EX3.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH3/EX3.8
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 '2243/CH3/EX3.8')
-rwxr-xr-x2243/CH3/EX3.8/Ex3_8.sce16
-rwxr-xr-x2243/CH3/EX3.8/Res3_8.txt7
2 files changed, 23 insertions, 0 deletions
diff --git a/2243/CH3/EX3.8/Ex3_8.sce b/2243/CH3/EX3.8/Ex3_8.sce
new file mode 100755
index 000000000..090ba8598
--- /dev/null
+++ b/2243/CH3/EX3.8/Ex3_8.sce
@@ -0,0 +1,16 @@
+clc();
+clear;
+//Given :
+lambda = 6058;// Wavelength of light in A
+deltalambda1 = 0.01; // line width for a krypton source in A
+deltalambda2 = 0.00015; // line width for a laser source in A
+// The maximum number of fringes is given by n_max = lambda/deltalambda
+// (a) For a krypton source :
+n_max1 = lambda/deltalambda1 ;
+// (b) For a laser source :
+n_max2 = lambda/deltalambda2;
+printf("The maximum number of fringes observable are :\n\n");
+printf("(a) For a krypton source : %d \n\n",n_max1);
+printf("(b) For a laser source : %d \n\n",n_max2);
+
+
diff --git a/2243/CH3/EX3.8/Res3_8.txt b/2243/CH3/EX3.8/Res3_8.txt
new file mode 100755
index 000000000..e494951f9
--- /dev/null
+++ b/2243/CH3/EX3.8/Res3_8.txt
@@ -0,0 +1,7 @@
+ The maximum number of fringes observable are :
+
+(a) For a krypton source : 605800
+
+(b) For a laser source : 40386666
+
+ \ No newline at end of file