summaryrefslogtreecommitdiff
path: root/1694/CH1/EX1.16/EX1_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '1694/CH1/EX1.16/EX1_16.sce')
-rw-r--r--1694/CH1/EX1.16/EX1_16.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1694/CH1/EX1.16/EX1_16.sce b/1694/CH1/EX1.16/EX1_16.sce
new file mode 100644
index 000000000..2432514e2
--- /dev/null
+++ b/1694/CH1/EX1.16/EX1_16.sce
@@ -0,0 +1,22 @@
+clear;
+clc;
+printf("\nEx1.16\n");
+//page no.-26
+//given
+//For <111> planes
+h=1;
+k=1;
+l=1;
+n=1;.....//order
+theta=30;......//angle in degrees
+lambda=1.75;....//wavelength in angstrom
+
+//we know d=a/sqrt((h^2)+(k^2)+(l^2))........distance between planes
+
+//also by bragg's law 2*d*sind(theta)=n*lambda......put d values in this
+
+a=(n*lambda*sqrt((h^2)+(k^2)+(l^2)))/(2*sind(theta))......//interatomic spacing in angstrom
+
+printf("\nInteratomic spacing is 3.031 angstrom\n");
+
+