blob: 1c44d7c7c98b6defefaed4fdc2a5db19fc3962ae (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;clear;
//Example 8.11
//given data
d=1.181;//distance of seperation in Angstrom
W=1.540;//wavelength in Angstrom
//calculations
n=2*d/W;//sin(D) = 1 for max value
disp(n,'the orders of bragg reflection')
|