Unidentified DMPO adduct features
I collected an EPR spectrum of photolyzed struvite in the presence of DMPO in water. I expect it to mainly generate reactive oxygen species. I then simulated EPR spectra for several DMPO adducts and oxidation products using the literature hyperfine splitting values from Buettner's 1987 Free Radical Biology and Medicine paper. I also considered ammonia and phosphate radicals since these could come from struvite. (I had to shift the g-value 0.002 units away from its literature value due to our instrument, as I mentioned in a previous post.) I overlaid the simulated spectra with my experimental spectrum in Origin and found that many of my peaks could be assigned, but there were several which did not correspond to any of the DMPO adducts or oxidation products I considered. Does anyone have any idea as to what these unassigned features might be, or know of a reference that might be able to help? I am attaching my experimental spectrum to this post.
Here is my code. I converted the x-axis to g-values at the end since that is what my instrument reports:
%DMPO-OH simulation
clear,clc,clf
Sys.S=1/2;
Sys.Nucs='14N,1H';
Sys.g=2.00829;
Sys.A=[42 42];
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B1,spc1]=garlic(Sys,Exp);
%%
%DMPO-OOH simulation
Sys.S=1/2;
Sys.Nucs='14N,1H,1H';
Sys.g=2.00829;
Sys.A=[40.1 32.8 3.52];
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B2,spc2]=garlic(Sys,Exp);
%%
%DMPOX simulation
Sys.S=1/2;
Sys.Nucs='14N,1H,1H';
Sys.A=[19.9 11.8 11.8];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B3,spc3]=garlic(Sys,Exp);
%%
%3-DMPO-yl simulation
Sys.S=1/2;
Sys.Nucs='14N,1H';
Sys.A=[46.2 62.8];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B4,spc4]=garlic(Sys,Exp);
%%
%DMPO dimer simulation
Sys.S=1/2;
Sys.Nucs='14N,1H';
Sys.A=[39.8 44.5];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B5,spc5]=garlic(Sys,Exp);
%%
%Simulating the degradation product of DMPO and O2-
Sys.S=1/2;
Sys.Nucs='14N,1H'
Sys.A=[42.9 61.6];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B6,spc6]=garlic(Sys,Exp);
%%
%DMPO-NH3 simulation
Sys.S=1/2;
Sys.Nucs='14N,1H,14N';
Sys.A=[39.2 52.5 8.76];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B7,spc7]=garlic(Sys,Exp);
%%
%DMPO-PO2(OH)2 simulation
Sys.S=1/2;
Sys.Nucs='14N,1H,1H,31P';
Sys.A=[40.9 34.8 3.08 1.4];
Sys.g=2.00829;
Sys.lwpp=0.1;
Exp.mwFreq=9.851525;
Exp.Range=[345 355];
[B8,spc8]=garlic(Sys,Exp);
%%
%Simulating the sum of multiple DMPO products
total=spc1+spc2+spc3+spc4+spc5+spc6+spc7+spc8;
G=B110;
gnumerator=planck9.8515251e9ones(1,1024);
gdenominator=bmagn1e-4G;
g=gnumerator./gdenominator;
plot(g,total)