diff options
Diffstat (limited to '2288/CH1/EX1.22.6/ex1_22_6.sce')
-rwxr-xr-x | 2288/CH1/EX1.22.6/ex1_22_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2288/CH1/EX1.22.6/ex1_22_6.sce b/2288/CH1/EX1.22.6/ex1_22_6.sce new file mode 100755 index 000000000..48157ccb4 --- /dev/null +++ b/2288/CH1/EX1.22.6/ex1_22_6.sce @@ -0,0 +1,16 @@ +// Exa 1.22.6
+clc;
+clear;
+close;
+// Given data
+d = 5.2;// in gm/cc
+n = 2;
+M = 120;
+N_A = 6.023*10^23;
+m = M/N_A;//mass of 1 atom in gm
+m = n*m;//mass of unit cell in gm
+g = 20;// in gm
+m = g/m;// in unit cells
+disp(m,"The number of unit cell in its 20 gm is : ");
+
+
|