summaryrefslogtreecommitdiff
path: root/3875/CH11/EX11.17
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3875/CH11/EX11.17
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.17')
-rw-r--r--3875/CH11/EX11.17/11_17.sce16
-rw-r--r--3875/CH11/EX11.17/11_17.txt3
2 files changed, 19 insertions, 0 deletions
diff --git a/3875/CH11/EX11.17/11_17.sce b/3875/CH11/EX11.17/11_17.sce
new file mode 100644
index 000000000..855296229
--- /dev/null
+++ b/3875/CH11/EX11.17/11_17.sce
@@ -0,0 +1,16 @@
+clc;
+clear;
+//Consider the peak value 8 of observation for calculation in the sum
+lambda=0.07107 //wavelength in nm
+theta=29.71 //angle in degree
+h=4 //x intercept of parallel plane
+k=0 //y intercept of parallel plane
+l=0 //z intercept of parallel plane
+
+//calculation
+d_400=(lambda/(2*sind(theta))) //interplanar distance in nm
+alpha=d_400*(sqrt(h^2+k^2+l^2))
+
+mprintf("The crystal structure is bcc due to corresponding (hkl) values\n")
+mprintf("lattice constant of peak no.1 is (110)\n")
+mprintf("The element is tungsten since this lattice constant of %0.4f nm and crystallizes in the bcc structure",alpha) //The answer provided in the textbook is wrong
diff --git a/3875/CH11/EX11.17/11_17.txt b/3875/CH11/EX11.17/11_17.txt
new file mode 100644
index 000000000..eef38c5d7
--- /dev/null
+++ b/3875/CH11/EX11.17/11_17.txt
@@ -0,0 +1,3 @@
+The crystal structure is bcc due to corresponding (hkl) values
+lattice constant of peak no.1 is (110)
+The element is tungsten since this lattice constant of 0.2868 nm and crystallizes in the bcc structure \ No newline at end of file