summaryrefslogtreecommitdiff
path: root/3651/CH2/EX2.14/Ex2_14.sce
blob: c26ba48227a5c600bdec3b488bcc3f8baf5b5bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

//Variable declaration
a=4.57
h=1
k=1
l=1
lamda=1.52
twotheta=33.5*%pi/180
r=5                  //radius
//Calculations
d=a/(h**2+k**2+l**2)**(1/2)
sintheta=lamda/(2*d)
X=r/tan(twotheta)

//Result
printf('d =%0.3f Angstorms\n',(d))
printf('sin(theta)=%0.3f \n',(sintheta))
printf('X =%0.3f cm\n',(X))