diff options
Diffstat (limited to '3718/CH7/EX7.10')
-rw-r--r-- | 3718/CH7/EX7.10/Ex7_10.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3718/CH7/EX7.10/Ex7_10.sce b/3718/CH7/EX7.10/Ex7_10.sce new file mode 100644 index 000000000..c26440751 --- /dev/null +++ b/3718/CH7/EX7.10/Ex7_10.sce @@ -0,0 +1,18 @@ +//Chapter 7: Solid State
+//Problem: 10
+clc;
+
+//Declaration of Constant
+N = 6.023 * 10 ** 23
+
+// Variables
+D = 0.53 //in g per cm cube
+MM = 6.94 //in g per mol
+n = 2
+
+// Solution
+mprintf("For BCC pattern,\n")
+mprintf(" Number of Atoms per unit cell = 2\n")
+V = D * N / (n * MM)
+V = 1 / V
+mprintf(" Volume of a unit cell of lithium metal is %.2e cc",V)
|