diff options
Diffstat (limited to '3537/CH5/EX5.10')
-rw-r--r-- | 3537/CH5/EX5.10/Ex5_10.sce | 13 | ||||
-rw-r--r-- | 3537/CH5/EX5.10/Ex5_10.txt | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/3537/CH5/EX5.10/Ex5_10.sce b/3537/CH5/EX5.10/Ex5_10.sce new file mode 100644 index 000000000..0ef8b28e0 --- /dev/null +++ b/3537/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,13 @@ +//Example 5_10
+clc();
+clear;
+//To determine interplanar spacing andmiller indices
+n=1
+lamda=1.54 //Units in A
+theta=20.3 //units in degrees
+d=(n*lamda)/(2*sin(theta*%pi/180)) //units in A
+printf("Interplanar spacing d=%d A\n",d)
+a=3.16
+hkl=a/d
+hkl2=hkl^2
+printf("In order to get h^2+k^2+l^2=%d as l=0 then h=1 and k=1",hkl2)
diff --git a/3537/CH5/EX5.10/Ex5_10.txt b/3537/CH5/EX5.10/Ex5_10.txt new file mode 100644 index 000000000..dcc1014f6 --- /dev/null +++ b/3537/CH5/EX5.10/Ex5_10.txt @@ -0,0 +1,2 @@ + Interplanar spacing d=2 A
+In order to get h^2+k^2+l^2=2 as l=0 then h=1 and k=1
\ No newline at end of file |