summaryrefslogtreecommitdiff
path: root/1016/CH8/EX8.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1016/CH8/EX8.10
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 '1016/CH8/EX8.10')
-rwxr-xr-x1016/CH8/EX8.10/ex8_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1016/CH8/EX8.10/ex8_10.sce b/1016/CH8/EX8.10/ex8_10.sce
new file mode 100755
index 000000000..a7cb9c11c
--- /dev/null
+++ b/1016/CH8/EX8.10/ex8_10.sce
@@ -0,0 +1,13 @@
+ clc;clear;
+//Example 8.10
+
+//given values
+D=12;//glancing angle in Degree
+n=1;
+d=3.04*10^-10;//grating space in m
+
+//calculation
+W=(2*d*sind(D));
+disp((W/(10^-10)),'the wavelength in Angstrom');
+D3=asind((3*W)/(2*d));
+disp(D3,'the angle for third order reflection in degrees') \ No newline at end of file