Dear Stefan,
many thanks for your indications. I agree with you that two spins S=1/2 with zero interaction are providing a different energy pattern compared to a single spin S=1/2, and the same is true for two S=1/2, I=7/2 compared to a single one. However, the EPR spectrum the two S=1/2 give in your example is the same as for the single S=1/2 (except for an obvious intensity factor). This is following expectations, since the two hamiltonians depict the same physical situation, i.e. independent spins with the same SH parameters. I tested this with a somehow simpler system (S=1/2, I=1/2, isotropic g) and it apparently works.
Code: Select all
clear
Exp.mwFreq=9.45
Exp.Range=[300 400]
Sys2.S = [1/2, 1/2];
Sys2.A=[400 100 25 0 0 0;0 0 0 400 100 25]
Sys2.g = [2, 2];
Sys2.J = 0;
Sys2.Nucs='1H,1H'
Sys2.lw=1
Sys1.S = 1/2;
Sys1.Nucs='1H'
Sys1.A=[400 100 25]
Sys1.g = 2;
Sys1.lw=1
[B2,sim2]=pepper(Sys2,Exp);
[B1,sim1]=pepper(Sys1,Exp);
plot(B2,sim2,'g',B1,sim1*4,'r')
So, what is puzzling me and led me thinking there was something wrong in my input, is the non-coincidence of the EPR spectra in the case I presented before; for the two VO2+centers with J=0, some weak but definite resonances which are not there in the case of a single center appear. Is this simply a matter of low precision? I tried to increase Threshold/nKnots but with no apparent effect (see below).
Code: Select all
clear all
tic
convfact=(clight*100)/1e6; %da cm-1 a Mhz
V_MA119t11.S = [1/2, 1/2];
gpv = [1.98 1.98 1.94]; % principal values
V_MA119t11.g = [gpv;gpv];
V_MA119t11.Nucs = '51V,51V';
V_MA119t11.A = [0.0062 0.0062 0.0173 0 0 0; 0 0 0 0.0062 0.0062 0.0173]*convfact
V_MA119t11.lw=[0.4 0.4];
V_MA119t11.HStrain=[5. 5. 5.];
V_MA119t11.ee=0
Exp=struct('mwFreq',9.45,'nPoints',2048,'Range',[260 420],'Temperature',50,'Harmonic',1); %campo in mT
Options.nKnots = 91
Options.Threshold = 0.1
Vsingolo.S=1/2
Vsingolo.g=gpv
Vsingolo.Nucs = '51V';
Vsingolo.A = [0.0062 0.0062 0.0173]*convfact
Vsingolo.lw=[0.4 0.4];
Vsingolo.HStrain=[5. 5. 5.];
[B,spec1] = pepper(V_MA119t11,Exp,Options);
[B,spec2] = pepper(Vsingolo,Exp,Options);
figure('Name','Spectrum','NumberTitle','off');
plot(B,spec1,'g', B,spec2*2,'r','LineWidth', 1);
xlim(Exp.Range)
xlabel('magnetic field (mT)');
ylabel('Signal');
toc
Thanks again for your time and patience.