diff options
Diffstat (limited to '1694/CH1/EX1.9/Ex1_9.sce')
-rw-r--r-- | 1694/CH1/EX1.9/Ex1_9.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1694/CH1/EX1.9/Ex1_9.sce b/1694/CH1/EX1.9/Ex1_9.sce new file mode 100644 index 000000000..8ee6f9d3f --- /dev/null +++ b/1694/CH1/EX1.9/Ex1_9.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+printf("\nEx1.9\n");
+//page no.-11
+//given
+rho=2170;.......//density of NaCl in kg/m^3
+m=58.45;.........//molecular wt. of NaCl
+n=4;...........//molecules per unit cell for F.C.C.
+N=6*10^26;...//avagadro no.
+
+M=(n*m)/N;..........//mass in each unit cell
+//as density=mass/volume, so volume is a^3
+
+a=(M/rho)^(1/3)......//lattice constant in Angstrom
+
+printf("\nlattice constant is 5.64 angstrom\n");
|