blob: 8552962295edb014e3be8420ec913d3306f9941d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc;
clear;
//Consider the peak value 8 of observation for calculation in the sum
lambda=0.07107 //wavelength in nm
theta=29.71 //angle in degree
h=4 //x intercept of parallel plane
k=0 //y intercept of parallel plane
l=0 //z intercept of parallel plane
//calculation
d_400=(lambda/(2*sind(theta))) //interplanar distance in nm
alpha=d_400*(sqrt(h^2+k^2+l^2))
mprintf("The crystal structure is bcc due to corresponding (hkl) values\n")
mprintf("lattice constant of peak no.1 is (110)\n")
mprintf("The element is tungsten since this lattice constant of %0.4f nm and crystallizes in the bcc structure",alpha) //The answer provided in the textbook is wrong
|