blob: a53c087c2a99175f34dfa65006a1cdba89d65cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 5_15
clc();
clear;
//To find the glancing angle for the second order diffraction
d100=0.28 //units in nm
n=2
lamda=0.071 //units in nm
d110=d100/sqrt(2)
theta=asin(( n*lamda)/(2*d110))*180/%pi
printf("The glancing angle is %d degrees",theta)
|