blob: 2135b0ffd2a815543c4b6815030259cf74952db0 (
plain)
1
2
3
4
5
6
7
8
9
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')
|