blob: 89a17af9689c7abc511fd322b26dc2e9b25defac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear;
clc;
printf("\nEx1.8\n");
//page no.-11
//given
rho=7870;.........//densitynof alpha iron in kg/m^3
N=6.02*10^26;.....//avagadro no.
n=2;..............//number of molecules per unit cell for B.C.C.
M=55.8;..........//atomic weight
a=((n*M)/(N*rho))^(1/3).........//lattice constant in metre
printf("\nlattice constant is 2.86 Angstrom\n");
|