summaryrefslogtreecommitdiff
path: root/3665/CH2/EX2.4/Ex2_4.sce
blob: 79e8d2f29816c8f0a08decfb5912ca6d0c21c5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)