summaryrefslogtreecommitdiff
path: root/3840/CH3/EX3.11/Ex3_11.sce
blob: 110a7f7f3cfd9c7e433fb7f752c291d5618f727f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clear
//
//
//

//Variable declaration
n=1     //order
theta=38.2*%pi/180     //glancing angle(radian)
lamda=1.54                 //wavelength(angstrom)
h=2
k=2
l=0

//Calculation
d=n*lamda/(2*sin(theta))       //lattice parameter(angstrom)
a=d*sqrt(h**2+k**2+l**2)       //lattice parameter(angstrom)

//Result
printf("\n lattice parameter is %0.3f  angstrom",a)