summaryrefslogtreecommitdiff
path: root/3875/CH11/EX11.9/11_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3875/CH11/EX11.9/11_9.sce')
-rw-r--r--3875/CH11/EX11.9/11_9.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3875/CH11/EX11.9/11_9.sce b/3875/CH11/EX11.9/11_9.sce
new file mode 100644
index 000000000..38040ca61
--- /dev/null
+++ b/3875/CH11/EX11.9/11_9.sce
@@ -0,0 +1,14 @@
+clc;
+clear;
+a=0.82 //cell parameter in nm
+b=0.94 //cell parameter in nm
+c=0.75 //cell parameter in nm
+h=1 //x intercept of parallel plane
+k=2 // intercept of parallel plane
+l=3 //z intercept of parallel plane
+
+//calculation
+d_123=((h/a)^2+(k/b)^2+(l/c)^2)^(-1/2)
+d_246=d_123/2
+mprintf("The interplanar distance between 123 planes is = %1.2f and 246 planes is = %1.3f",d_123,d_246)
+//The answer provided in the textbook is wrong.