Fitting 5-DSA EPR Spectrum

General forum for EasySpin: questions, how to's, etc.
Post Reply
giosot75
Newbie
Posts: 2
Joined: Wed Oct 16, 2024 4:15 am

Fitting 5-DSA EPR Spectrum

Post by giosot75 »

Hi,

I am a new EPR and EASYSPIN user, I have been trying to fit 5-DSA EPR spectra.
This is the initial (very basic) script,

[B, spc] = eprload('Complex_1_10_5_DSA_150scan_1.spc');

Exp.mwFreq = 9.87; % GHz
Exp.Range = [min(B), max(B)];

Sys0.g = [2.009, 2.006, 2.003]; % g-values
Sys0.Nucs = '14N'; % Nitrogen nucleus
Sys0.A = [18, 18, 93]; % Hyperfine constants (MHz)
Sys0.lw = 1; % Linewidth (mT)
Sys0.logtcorr = -9; % Log correlation time

SysVary.g = [0.001, 0.001, 0.001]; % Vary g-values
SysVary.A = [3, 3, 20]; % Vary hyperfine constants
SysVary.lw = 0.3; % Vary linewidth
SysVary.logtcorr = 1; % Vary log correlation time

esfit(spc, @chili, {Sys0, Exp}, {SysVary});

What I am getting is only a straight line, whatever changes I might try to apply.

I would appreciate any suggestions on what I am doing wrong, I am attaching an example of 5-DSA spectra files.

Attachments
Complex_1_10_5_DSA_150scan_1.spc
(4.69 KiB) Downloaded 345 times
Complex_1_10_5_DSA_150scan_1.par
(407 Bytes) Downloaded 344 times
Stefan Stoll
EasySpin Creator
Posts: 1106
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: Fitting 5-DSA EPR Spectrum

Post by Stefan Stoll »

I think you forgot to convert the loaded field vector from gauss to millitesla:

Code: Select all

B = B/10;  % G -> mT

Also, according to the parameter file, the microwave frequency is 9.78 and not 9.87 GHz.

giosot75
Newbie
Posts: 2
Joined: Wed Oct 16, 2024 4:15 am

Re: Fitting 5-DSA EPR Spectrum

Post by giosot75 »

Yes indeed, it worked magic!
Thank you very much,

Kind regards

Giorgos

Post Reply