diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3875/CH4/EX4.7 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3875/CH4/EX4.7')
-rw-r--r-- | 3875/CH4/EX4.7/4_7.txt | 1 | ||||
-rw-r--r-- | 3875/CH4/EX4.7/Ex4_7.sce | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3875/CH4/EX4.7/4_7.txt b/3875/CH4/EX4.7/4_7.txt new file mode 100644 index 000000000..b0fd4faf9 --- /dev/null +++ b/3875/CH4/EX4.7/4_7.txt @@ -0,0 +1 @@ +The wavelength of the source is = 1.188e-07 m
\ No newline at end of file diff --git a/3875/CH4/EX4.7/Ex4_7.sce b/3875/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..c5a2eeb66 --- /dev/null +++ b/3875/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,15 @@ +clc;
+clear;
+d1=0.42*10^-3 //distance between images obtained at position 1 in m
+d2=1.21*10^-3 //distance between images obtained at position 2 in m
+Beta_1=0.4*10^-3 //bandwidth in m at position 1
+Beta_2=0.5*10^-3 //bandwidth in m at position 2
+D2_minus_D1=0.60 //displacement in position in m
+
+//calculation
+
+d=sqrt(d1*d2) //distance between sources in m
+lambda=(d*(Beta_2-Beta_1))/D2_minus_D1
+
+mprintf("The wavelength of the source is = %1.3e m",lambda)
+//The answer provided in the textbook is wrong.
|