Heisenberg Exchange in the case of rigid limit and chaotic orientation of neighboring radicals

General forum for EasySpin: questions, how to's, etc.
Post Reply
trukhan
User
Posts: 11
Joined: Sun Jan 15, 2017 12:18 am

Heisenberg Exchange in the case of rigid limit and chaotic orientation of neighboring radicals

Post by trukhan »

EasySpin makes it possible to simulate spectra in the case of Heisenberg Exchange and low radical mobility with chili() if you set the Sys.tcorr large enough. However, as the calculation shows, it is assumed that neighboring radicals in polycrystallites are ordered along the same direction. This can be seen from the fact that at large values of Sys.Exchange, the anisotropy of the g-factor is not averaged.
Is there any possibility of making a calculation on the assumption of a chaotic orientation of neighboring radicals? How difficult is this task in general? Is there anyone in the EPR community who could take it on?

% Effect of Heisenberg exchange in a nitroxide sample
clear, clf, clc
% Nitroxide and experimental parameters
Sys.g = [2.0088, 2.0061, 2.0027];
Sys.Nucs = '14N';
Sys.A = [16 16 86];
Sys.tcorr = 100e-9;
Sys.lw = 0.1;
Opt.LLMK = [16 5 6 16];
Exp.mwFreq = 9.5;
Exp.CenterSweep = [339, 10];
% Loop over range of exchange frequencies, simulation
ExchangeFreq = 10.^linspace(0.1,4,9); % in MHz
for k = 1:numel(ExchangeFreq)
Sys.Exchange = ExchangeFreq(k);
[B,spc(k,:)] = chili(Sys,Exp,Opt);
legendCell{k} = ['ExchangeFreq = ',num2str(ExchangeFreq(k)),' MHz'];
end
stackplot(B,spc);
legend(legendCell);

Attachments
HeisenbergExchange_ChaoticOrientation.png
HeisenbergExchange_ChaoticOrientation.png (43.9 KiB) Viewed 1332 times
katarkon
Local Expert
Posts: 186
Joined: Mon Jan 12, 2015 4:01 am

Re: Heisenberg Exchange in the case of rigid limit and chaotic orientation of neighboring radicals

Post by katarkon »

You may try to use the program for chemical exchange.
https://easyspin.org/forum/viewtopic.php?t=309
https://easyspin.org/forum/viewtopic.php?t=465

Also, in Your script the parameter should be Opt.LLKM=[...] (it seems to be a typo).
Secondly, the 1e-7s correlation time seems to be relatively low for averaging all anisotropic interactions.

Post Reply