summaryrefslogtreecommitdiff
path: root/3557/CH4/EX4.4/Ex4_4.sce
blob: 2ca484e3598dd4ad60bace4b4b7dc973d165df1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example4.4//
//(a)
RFe=0.124;//nm //atomic radius of iron
r=2*RFe
mprintf("r = %f nm",r)
//(b)
RAl=0.143;//nm //atomic radius of Aluminium
r1=2*RAl
mprintf("\nr1 = %f nm",r1)
//(c)
a=2;//given
RO=0.132;//nm // Ionic radius of Oxygen
b=cosd(30);//given
r2=2*(a*RO)*(b)
mprintf("\nr2 = %f nm",r2)