summaryrefslogtreecommitdiff
path: root/1085/CH3/EX3.30/ex3_30.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1085/CH3/EX3.30/ex3_30.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1085/CH3/EX3.30/ex3_30.sce')
-rwxr-xr-x1085/CH3/EX3.30/ex3_30.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1085/CH3/EX3.30/ex3_30.sce b/1085/CH3/EX3.30/ex3_30.sce
new file mode 100755
index 000000000..f62643ca1
--- /dev/null
+++ b/1085/CH3/EX3.30/ex3_30.sce
@@ -0,0 +1,13 @@
+//Exam:3.30
+clc;
+clear;
+close;
+angle=20.3;//in degree
+wavelength=1.54;//in angstrom
+n=1;
+a=3.16;//lattice parameter in angstrom
+d=n*wavelength/(2*sind(angle));//interplanar spacing
+M_indices=a^2/(d^2);
+disp(d,'interplanar spacing of reflection plane');
+disp(floor(M_indices),'miller indices of the reflection plane');
+disp((101),(110),(011)); \ No newline at end of file