summaryrefslogtreecommitdiff
path: root/3665/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3665/CH2/EX2.5/Ex2_5.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3665/CH2/EX2.5/Ex2_5.sce')
-rw-r--r--3665/CH2/EX2.5/Ex2_5.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3665/CH2/EX2.5/Ex2_5.sce b/3665/CH2/EX2.5/Ex2_5.sce
new file mode 100644
index 000000000..7e8622c10
--- /dev/null
+++ b/3665/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,22 @@
+clc//
+//
+//
+
+//Variable declaration
+h1=1;
+k1=0;
+l1=0;
+h2=1;
+k2=1;
+l2=0;
+h3=1;
+k3=1;
+l3=1;
+
+//Calculation
+d100=1/sqrt(h1^2+k1^2+l1^2); //interplanar spacing for (110)
+d110=1/sqrt(h2^2+k2^2+l2^2); //interplanar spacing for (110)
+d111=1/sqrt(h3^2+k3^2+l3^2); //interplanar spacing for (111)
+
+//Result
+printf("\n seperation between successive lattice planes is %0.3f : %0.2f : %0.2f ",d100,d110,d111)