summaryrefslogtreecommitdiff
path: root/884/CH11/EX11.3/Example11_3.sce
blob: 7b88ef33821380a9a67a876a3f1e074f74061213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//calculation of atomic radius

clear;
clc;

printf("\t Example 11.3\n");

atoms=8*1/8+6*1/2;//atoms in a cell
d=19.3;//density, g/cc
Au=197;//mol mass of Au, g
NA=6.022*10^23;//avogadro no.
m=atoms*Au/NA;//mass of 1 cell, g
V=m/d;//volume, cc
a=V^(1/3);//edge length, cm
r=a/sqrt(8)/100;//radius in m

printf("\t the atomic radius of Au is : %4.0f pm\n",r*10^12);

//End