Exchange- and hyperfine- coupled systems
Posted: Thu May 25, 2017 9:29 am
Dear all,
I am having some troubles in understanding the way ES handle the case of a pair of exchange coupled spin centers with hyperfine coupling. I used the following input to simulate a pair of S=1/2, I=7/2 with isotropic interaction. The hyperfine interaction is internded to be localized on each center, i.e I1A1S1+I2A2S2, with no cross terms (i guess the problem is here). This is the relevant part of the input file:
What I cannot understand is why, by setting J=0, I do not get the same energy pattern of a single S=1/2, I=7/2 with the same hyperfine parameters. This is evident by using levelsplot for two cases, which I would have considered as identical:
Thanks in advance for any suggestion.
I am having some troubles in understanding the way ES handle the case of a pair of exchange coupled spin centers with hyperfine coupling. I used the following input to simulate a pair of S=1/2, I=7/2 with isotropic interaction. The hyperfine interaction is internded to be localized on each center, i.e I1A1S1+I2A2S2, with no cross terms (i guess the problem is here). This is the relevant part of the input file:
Code: Select all
clear all
convfact=(clight*100)/1e6; %
V_MA119.S = [1/2, 1/2];
gpv = [1.98 1.98 1.94]; % g principal values
V_MA119.g = [gpv;gpv];
V_MA119.Nucs = '51V,51V';
V_MA119.A = [0.006 0.006 0.017 0 0 0;0 0 0 0.006 0.006 0.017]*convfact;
V_MA119.J=0;
Code: Select all
V_single.S = 1/2;
gpv = [1.98 1.98 1.94]; % principal values
V_single.g = gpv;
V_single.Nucs = '51V';
V_single.A = [0.006 0.006 0.017 ]*convfact
levelsplot(V_single,'z',[0 450])
figure
levelsplot(V_MA119,'z',[0 450])