summaryrefslogtreecommitdiff
path: root/1367/CH5/EX5.10/5_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1367/CH5/EX5.10/5_10.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 '1367/CH5/EX5.10/5_10.sce')
-rwxr-xr-x1367/CH5/EX5.10/5_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1367/CH5/EX5.10/5_10.sce b/1367/CH5/EX5.10/5_10.sce
new file mode 100755
index 000000000..311720bfb
--- /dev/null
+++ b/1367/CH5/EX5.10/5_10.sce
@@ -0,0 +1,13 @@
+//Find Dimension of unit cell
+//Ex:5.10
+clc;
+clear;
+close;
+w=0.0708;//wavelength in nm
+h=1;
+k=0;
+l=0;
+s=0.0132;//a common divisor i.e.sin^2(theta)=0.0132
+a=sqrt((w^2*(h^2+k^2+l^2))/(4*s));//in nm
+a1=10^3*a;//in pm
+disp(a1,"Dimension of unit cell (in Picometer) = "); \ No newline at end of file