51V multiple oxidation states fitting

General forum for EasySpin: questions, how to's, etc.
Post Reply
yananwang1991
Newbie
Posts: 3
Joined: Thu Dec 19, 2024 8:20 pm

51V multiple oxidation states fitting

Post by yananwang1991 »

Hello All,

I am a new user in Easyspin, recently I got a 51V EPR spectrum within solution phase under Room temperature.
From the spectrum, I think there are more than one components (multiple oxidation states include), and try to figure out how many oxidation states there and the relevant ratio.
After modified a script with two components, the parameters reach 16 (I dont think this is a good start point, also because I even have no experience on Easyspin fitting). So I narrow down to one component try to fit some predominant peaks. however, the 8 parameters still running heavily and didt give good result. so please if anyone has background on 51V multiple components fitting or have good suggestions, very appreciate, please help.
Here the script:
clear, clc, clf

%Load experimental data

[B, spc] =textread('L-VONPs-7.65-20241128.txt', '%f %f', 'headerlines',1);

plot(B, spc);

Sys1.g = [1.98, 1.973, 1.937];
Sys1.A=[104 64 550];
Sys1.Nucs = '51V';

Sys1.lwpp = 1.5; % mT
Sys1.logtcorr =-9.5;
Exp.mwFreq = 9.8; % GHz
Exp.Range = [200.1 500.1]; % mT
Exp.nPoints = 4000;
Sys = {Sys1};

Vary1.g = [0.01, 0.02, 0.01]; % Check if this g-tensor is correct for your system
Vary1.A = [10 10 10]; % Check if hyperfine values are reasonable

Vary1.lwpp = 0.2; % Ensure line width is set correctly

Vary1.logtcorr =1;
Vary = {Vary1}; % Now includes variability for the third system

% Call the fitting function
FitOpt.Method = 'simplex'; % Try a more robust method
SimOpt.Method = 'simplified'; % Switch to simplified method for faster convergence

esfit(spc,@chili,{Sys,Exp,SimOpt},{Vary}, FitOpt);

% Save the fitted spectrum and magnetic field to a file
eprsave('myfile',B,spc,'EasySpin simulation');

Attachments
屏幕截图 2024-12-29 175057.png
屏幕截图 2024-12-29 175057.png (29.7 KiB) Viewed 2118 times
屏幕截图 2024-12-29 174501.png
屏幕截图 2024-12-29 174501.png (244.6 KiB) Viewed 2118 times
Stefan Stoll
EasySpin Creator
Posts: 1120
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: 51V multiple oxidation states fitting

Post by Stefan Stoll »

I doubt that you are seeing multiple oxidation states. Try fitting with a single component first.

It looks like you are fitting g and A as well as the rotational correlation time. I would suggest to measure a frozen spectrum and fit that to obtain g and A, then keep g and A fixed when you analyze the room-temp solution spectrum.

Post Reply