Dear all,
I am a beginner and struggling to simulate this spectrum. This spectrum is the ESR spectrum of vanadium compounds in powdered form at room temperature. My goal is to calculate accurate g-values and A-values through fitting.
Although I used the following code for fitting, the results were not satisfactory. As you can see from the shape of the residuals, there is significant broadening in the spectrum.
From my literature research, I found that such broadening is often explained as being caused by superexchange interactions of electrons along V(IV)-O-V(V) bonds. I believe this could be the case here as well.
I would greatly appreciate any guidance, opinions, or specific suggestions for improving the code.
Best regards,
/////////////////////////////////
Sys1.g = [1.973, 1.933];
Sys1.A=[192.8 523.7];
Sys1.Nucs = '51V';
Sys1.lwpp = 1.5;
Sys = {Sys1};
Exp.mwFreq = 9.2;
Exp.Range = [169.105 469.105];
Exp.nPoints = 65536;
Vary1.g = [0.05, 0.05];
Vary1.A = [20 20];
Vary1.lwpp = 1.0;
Vary = {Vary1};
esfit(spc,@pepper,{Sys,Exp},{Vary});
/////////////////////////////////