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/CH11/EX11.3 | |
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/CH11/EX11.3')
-rw-r--r-- | 3875/CH11/EX11.3/11_3.sce | 17 | ||||
-rw-r--r-- | 3875/CH11/EX11.3/11_3.txt | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3875/CH11/EX11.3/11_3.sce b/3875/CH11/EX11.3/11_3.sce new file mode 100644 index 000000000..d3e675c34 --- /dev/null +++ b/3875/CH11/EX11.3/11_3.sce @@ -0,0 +1,17 @@ +clc;
+clear;
+d=275 //interplanar distance in pm
+tetha=45 //glancing angle in degree
+
+//calculation
+//case(1) when intensity maxima is 3
+n=3
+lambda=(2*d*sind(tetha))/n
+mprintf("\nThe wavelength is = %1.3f pm\n",lambda)
+
+//case(2) when intensity maxima is 4
+n=4
+lambda=(2*d*sind(tetha))/n
+mprintf("The wavelength is = %1.3f pm",lambda)
+mprintf("Only for n=3 and n=4,the value of lambda lies within the range 95 pm to 140 pm")
+//The answer varies due to round off error.
diff --git a/3875/CH11/EX11.3/11_3.txt b/3875/CH11/EX11.3/11_3.txt new file mode 100644 index 000000000..7126ad754 --- /dev/null +++ b/3875/CH11/EX11.3/11_3.txt @@ -0,0 +1,3 @@ +he wavelength is = 129.636 pm
+The wavelength is = 97.227 pm
+Only for n=3 and n=4,the value of lambda lies within the range 95 pm to 140 pm
\ No newline at end of file |