Unexpected powder spectra after rotation of reference frames

General forum for EasySpin: questions, how to's, etc.
Post Reply
Lorenzo74
User
Posts: 10
Joined: Fri Jul 03, 2015 5:29 am

Unexpected powder spectra after rotation of reference frames

Post by Lorenzo74 »

Dear all,
I am performing some preliminary test to simulate spectra of an exchange-coupled pair of largely anisotropic effective doublets. The relevant hamiltonian is then H= B(g1*S1+g2S2)+JS1S2+S1DS2.
When simulating the powder spectrum with the code I include below I got two different patterns if I rotate the reference frames of all the anisotropic interactions in the same way (i.e. gFrame1=gFrame2=DFrame), see figure. I am sure I am missing something here, because in principle what I would like to do is a simple change of reference frame which should not affect the powder spectrum.
Any help would be welcome.

Code: Select all

clear all
convfact=clight/1e4;     %cm-1 to MHz
testaniso.S = [1/2 1/2]
testaniso.g = [4.16 1.52 1.08;4.16 1.52 1.08];      % g, for two electron spins
testaniso.J=-0.08*convfact;
testaniso.eeD =[-0.16 0.08 0.08]*convfact;
testaniso.lw=[10 10];
testaniso.HStrain=[700. 700. 700.];
Exp=struct('mwFreq',94.3,'nPoints',8192,'Range',[10 7500],'Temperature',10,'Harmonic',1); %campo in mT
Opt.nKnots=[91 3]
[B1,spec1] = pepper(testaniso,Exp,Opt);
figure('Name','Spectrum','NumberTitle','off');

testaniso.gFrame=[-15*pi/180  90*pi/180 -0*pi/180;-15*pi/180 90*pi/180 -0*pi/180]
testaniso.eeDFrame =[-15*pi/180 90*pi/180 -0*pi/180]
[B2,spec2] = pepper(testaniso,Exp,Opt);
plot(B1,spec1/max(spec1),'g',B2,spec2/max(spec2)+0.1,'r','LineWidth',2); 
xlabel('magnetic field (mT)');
ylabel('Signal');
Stefan Stoll
EasySpin Creator
Posts: 1059
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: Unexpected powder spectra after rotation of reference fr

Post by Stefan Stoll »

First, you have a typo: Sys.eeDFrame is not recognized by EasySpin, it should be Sys.eeFrame.

After fixing this typo, there is still a bug. Thanks for reporting! It's fixed in version 5.2.16, which you can download now from the website.
Lorenzo74
User
Posts: 10
Joined: Fri Jul 03, 2015 5:29 am

Re: Unexpected powder spectra after rotation of reference fr

Post by Lorenzo74 »

Dear Stefan,
thanks a lot for the identification of the typo, and of the bug. I will download the new version as soon as possible.
Post Reply