blob: dd926c38446792d774188c9222fceb70315deb4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Example number 4.9, Page number 69
clc;clear;
close;
//Variable declaration
n=1; //order
h=2;
k=0;
l=2;
theta=34; //angle(degree)
lamda=1.5; //wavelength(angstrom)
//Calculation
theta=theta*%pi/180; //angle(radian)
d=n*lamda/(2*sin(theta)); //spacing of crystal(angstrom)
a=d*sqrt(h**2+k**2+l**2); //lattice parameter(angstrom)
//Result
printf("lattice parameter is %.3f Anstrom",a)
//answer in the book is wrong
|