summaryrefslogtreecommitdiff
path: root/1271/CH13/EX13.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH13/EX13.10
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 '1271/CH13/EX13.10')
-rwxr-xr-x1271/CH13/EX13.10/10.txt1
-rwxr-xr-x1271/CH13/EX13.10/example13_10.sce10
2 files changed, 11 insertions, 0 deletions
diff --git a/1271/CH13/EX13.10/10.txt b/1271/CH13/EX13.10/10.txt
new file mode 100755
index 000000000..0a6b2090e
--- /dev/null
+++ b/1271/CH13/EX13.10/10.txt
@@ -0,0 +1 @@
+ primitive translation vector is 2.517300 Angstrom. \ No newline at end of file
diff --git a/1271/CH13/EX13.10/example13_10.sce b/1271/CH13/EX13.10/example13_10.sce
new file mode 100755
index 000000000..e719f451d
--- /dev/null
+++ b/1271/CH13/EX13.10/example13_10.sce
@@ -0,0 +1,10 @@
+clc
+// Given that
+a = 3.56 // the length of cube edge in angstrom
+// Sample Problem 10 on page no. 13.28
+printf("\n # PROBLEM 10 # \n")
+printf("Standard formula used \n")
+printf(" d = a / sqrt(2) \n")
+d = a / sqrt(2)
+printf("\n Permitive translation vector is %f Angstrom.",d)
+