diff options
Diffstat (limited to '3020/CH13/EX13.4/ex13_4.sce')
-rwxr-xr-x | 3020/CH13/EX13.4/ex13_4.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3020/CH13/EX13.4/ex13_4.sce b/3020/CH13/EX13.4/ex13_4.sce new file mode 100755 index 000000000..2135b0ffd --- /dev/null +++ b/3020/CH13/EX13.4/ex13_4.sce @@ -0,0 +1,10 @@ +clc;
+clear all;
+de = 4e3; // Density of CsCl in Kg per cuibc meter
+At1 = 132.9; // Atomic weight of Cs
+At2 = 35.5; // Atomic weight of Cl
+a = 4.12e-10; // Lattice constant in meters
+n = 1; // Number of atoms in a unit cell
+m = de*a^3; // Mass of CsCl;
+N = (n*(At1+At2))/m; //Avagadro Constant
+disp('per Kg mole',N,'The value of avagadro constant is')
|