From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3665/CH2/EX2.4/Ex2_4.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3665/CH2/EX2.4/Ex2_4.sce (limited to '3665/CH2/EX2.4/Ex2_4.sce') diff --git a/3665/CH2/EX2.4/Ex2_4.sce b/3665/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..79e8d2f29 --- /dev/null +++ b/3665/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,22 @@ +clc// +// +// + +//Variable declaration +r=0.1278; //atomic radius(m) +h1=1; +k1=1; +l1=0; +h2=2; +k2=1; +l2=2; + +//Calculation +a=(4*r/sqrt(2)); + +d110=a/sqrt(h1^2+k1^2+l1^2); //interplanar spacing for (110)(nm) +d212=a/sqrt(h2^2+k2^2+l2^2); //interplanar spacing for (212)(nm) + +//Result +printf("\n interplanar spacing for (110) is %0.4f nm",d110) +printf("\n interplanar spacing for (212) is %0.3f nm",d212) -- cgit