diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH3/EX3.8 | |
download | Scilab-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-x | 2243/CH3/EX3.8/Ex3_8.sce | 16 | ||||
-rwxr-xr-x | 2243/CH3/EX3.8/Res3_8.txt | 7 |
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 |