summaryrefslogtreecommitdiff
path: root/1271/CH13/EX13.10/example13_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1271/CH13/EX13.10/example13_10.sce')
-rwxr-xr-x1271/CH13/EX13.10/example13_10.sce10
1 files changed, 10 insertions, 0 deletions
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)
+