XRD Analysis
-
Analyze the relationship between bright spot spacing and lattice structure to understand X-ray Diffraction (XRD) principles
Determine lattice constants and symmetry patterns of different materials through experimental diffraction analysis
Evaluate how different wavelengths of light (as analogs for X-rays) interact with crystalline structures
Test hypotheses about the relationship between wavelength and observed diffraction patterns
Apply crystallographic principles to distinguish between materials with different lattice arrangements
-
BU ENG ME 306 student
-
February-March 2025
-
X-ray Diffraction (XRD)
MATLAB/Python for Data Analysis
Optics
Signal Processing
Data Visualization
Statistical Analysis
-
Successfully calculated the lattice constant (a = 0.2128 × 10⁻³ nm) of a glasses sample with an uncertainty of ±0.0046 × 10⁻³ nm
Determined the lattice constant (a = 8.71 × 10⁻⁴ nm) of a mystery sample with an uncertainty of ±9.7039 × 10⁻⁶ nm
Identified four-fold symmetry in the glasses sample versus two-fold symmetry in the mystery sample, demonstrating different crystalline arrangements
Proved experimentally that wavelength influences diffraction pattern observations but not the fundamental lattice structure
Verified that material properties remain constant across different probing wavelengths
Analyzed potential sources of experimental error including temperature effects and surface contaminants
Linear regression plot of lattice constant calculation for different wavelengths
In this X-ray Diffraction (XRD) lab, we explored the relationship between diffraction patterns and crystal lattice structures using visible light as an analog for X-rays. We examined two samples—one with four-fold symmetry and another with two-fold symmetry—using different wavelengths of light (650 nm, 532 nm, and 450 nm). The setup involved a laser pointer projecting light through a lens onto the samples, producing diffraction patterns on a ruler. We measured the radial distances of diffraction spots to calculate angles and lattice parameters using the Bragg equation and the relationship between sin(θ), λ, and the Miller indices (h, k). We then plotted sin(θ) versus λ√(h²+k²) and performed linear regression to estimate the lattice constants for both samples. The lab required precise data collection and analysis, including calculating uncertainties and weighted means to determine lattice constants, and was adapted for the mystery sample with two-fold symmetry. The results demonstrated how wavelength impacts diffraction resolution without altering the inherent properties of the material. The MATLAB code and explanations used are shown below.
MATLAB Code
Explanation
lambda = [650, 532, 405]'
Creates a column vector of wavelengths in nanometers:
λ = [650, 532, 405]
These represent red (650nm), green (532nm), and blue (405nm) laser wavelengths.
h_indices = repmat([0 1 2], 3, 3)
k_indices = repmat(repelem(0:2, 3), 3, 1)
Creates matrices for Miller indices:
h_indices: Repeats the pattern [0,1,2] across 3 rows and 3 columns.
k_indices: Creates a 3×9 matrix where each row contains three 0's, three 1's, and three 2's.
These represent crystallographic planes in a crystal lattice.
x_dist = [repmat([0 4.12 8.64], 1, 3);
repmat([0 3.38 6.95], 1, 3);
repmat([0 2.57 5.1], 1 ,3)] / 100;
Creates distance measurements in the x-direction in meters:
- First row: Three repeats of [0, 4.12, 8.64] cm
- Second row: Three repeats of [0, 3.38, 6.95] cm
- Third row: Three repeats of [0, 2.57, 5.1] cm
Division by 100 converts from centimeters to meters.
y_dist = [repelem(0, 3) repelem(4.57, 3) repelem(8.86, 3);
repelem(0, 3) repelem(3.85, 3) repelem(7.34, 3);
repelem(0, 3) repelem(2.62, 3) repelem(5.19, 3)] / 100;
Creates distance measurements in the y-direction in meters:
- First row: Three 0's, three 4.57's, three 8.86's (cm)
- Second row: Three 0's, three 3.85's, three 7.34's (cm)
- Third row: Three 0's, three 2.62's, three 5.19's (cm)
Division by 100 converts from centimeters to meters.
d = sqrt(x_dist.^2 + y_dist.^2);
Calculates the Euclidean distance using the Pythagorean theorem:
d = √(x² + y²)
This represents the distance from the central maximum to the diffraction spots.
L = 0.3;
theta = atan(d / L);
Defines the screen distance L as 0.3 meters and calculates the diffraction angle:
θ = arctan(d/L)
This is the angle between the central axis and the diffraction spot.
x = lambda .* sqrt(h_indices.^2 + k_indices.^2);
y = sin(theta);
Calculates x and y values for the linear regression:
x = λ · √(h² + k²)
y = sin(θ)
Based on the Bragg's law relationship for diffraction.
slopes = zeros(1, 3);
weights = zeros(1, 3);
Initializes arrays to store regression slopes and weights:
These will be used to calculate the weighted average of the lattice constant.
figure; hold on;
colors = ['r', 'g', 'b'];
Sets up a figure for plotting and defines color codes:
'r' for red (650nm), 'g' for green (532nm), 'b' for blue (405nm).
for i = 1:3
disp(i)
x_data = x(i, :);
y_data = y(i, :);
X = x_data(:);
C = regress(y_data(:), X);
%confidence interval calculation
n = length(x);
df = n - 1;
y_fit = C * X;
residuals = y_data - y_fit;
s_err = sqrt(sum(sum(residuals.^2, 1), 2) / df);
weight = 1 ./ (s_err.^2);
slopes(i) = C;
weights(i) = weight;
plot(x_data, y_data, '.', 'Color', colors(i), 'MarkerSize', 20);
plot(x_data, C * x_data, '-', 'Color', colors(i));
disp(['Row ' num2str(i) ' (Color: ' colors(i) '):']);
disp([' Slope (C) = ' num2str(C)]);
end
For each wavelength (red, green, blue):
- Extracts the corresponding x and y data
- Performs linear regression: y = C·x (where C is the slope)
- Calculates the standard error and weight (1/variance)
- Stores the slope and weight
- Plots both data points and regression line
- Displays the slope value
The linear regression is based on the relationship:
sin(θ) = (λ/2a) · √(h² + k²)
where 'a' is the lattice constant.
xlabel('λsqrt(h^2+k^2)');
ylabel('sin(\theta)');
title('Linear Regression for Each Color (Red, Green, Blue)');
legend('Red Data', 'Red Fit', 'Green Data', 'Green Fit', 'Blue Data', 'Blue Fit');
hold off;
Labels the axes and adds a title and legend to the plot:
x-axis: λ·√(h²+k²)
y-axis: sin(θ)
The plot visualizes the linear relationship for each wavelength.
a = sum((1./slopes) .* weights) / sum(weights);
weighted_var = sum(weights .* ((1./slopes - a).^2)) / sum(weights);
a_std = sqrt(weighted_var);
% Calculate confidence interval
totalDF = length(slopes) - 1;
ciMultiplier = tinv(0.975, totalDF);
ciLower = a - ciMultiplier * a_std;
ciUpper = a + ciMultiplier * a_std;
% Display result
fprintf('The 95%% confidence interval for lattice constant a is %.2f ± %.2f nm, [%.2f, %.2f] nm', a, ciMultiplier * a_std, ciLower, ciUpper)
Calculates the weighted average lattice constant:
a = Σ((1/slopes)·weights) / Σ(weights)
Since slope = λ/(2a·√(h²+k²)), then a = λ/(2·slope·√(h²+k²))
Calculates the weighted variance and standard deviation:
weighted_var = Σ(weights·((1/slopes - a)²)) / Σ(weights)
a_std = √(weighted_var)
Computes a 95% confidence interval using the t-distribution:
CI = a ± t·a_std
where t is the critical value of the t-distribution with n-1 degrees of freedom at 95% confidence.