blob: 0eea0a45308abe2e7c5e15c216ee537cbb15d1ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example 5_17
clc();
clear;
//To find the lattice parameter and atomic diameter
lamda=0.171 //units in nm
theta=30 //units in degrees
d110=lamda/(2*sin(theta*%pi/180)) //units in nm
h=1
k=1
l=0
a=d110*sqrt(h^2+k^2+l^2) //units in nm
printf("The lattice parameter is a=%.3fnm",a)
//Assuming the metal is FCC
a1=0.171*sqrt(3) //units in nm
a2=0.148*sqrt(4) //units in nm
ad=a1/sqrt(2) //units in nm
printf("\n Atomic diameter is %.4fnm",ad)
|