summaryrefslogtreecommitdiff
path: root/3755/CH3/EX3.9/Ex3_9.sce
blob: 27c5e77973be75e02bc7dc5caf18c7ef4ab13211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
clear
//
//
//

//Variable declaration
lamda=0.58;      //wavelength(angstrom)
theta1=6+(45/60);   //glancing angle(degree)
theta2=9+(15/60);   //glancing angle(degree)
theta3=13;   //glancing angle(degree)

//Calculation
theta1=theta1*%pi/180;    //angle(radian)
theta2=theta2*%pi/180;    //angle(radian)
theta3=theta3*%pi/180;    //angle(radian)
x1=lamda/(2*sin(theta1));
x2=lamda/(2*sin(theta2));

//Result
printf("\n interplanar spacing is %0.3f angstrom",x2)
printf("\n answer varies due to rounding off errors")