Lanthanides
Posted: Tue Oct 22, 2019 2:50 am
I have been trying to simulate lanthanide systems with Easyspin, in particular their magnetic susceptibilities, and I have a few questions. Here I consider a Dy(III) mononuclear complex (S = 5/2, L = 5) with CF parameters from the literature:
I understand that there is the possibility to consider either the J system using the gJ value:
I used the B Stevens operators, since I haven't defined any L, and which should be the right course from what the documentation says. However, the results are 2 times the expected ones. They become coherent to experimental ones if instead of
Is that supposed to happen?
Moreover, we can also consider the L-S system:
In that case, the values are ~1.5 times the expected values, but then I haven't defined any
Thanks!
I understand that there is the possibility to consider either the J system using the gJ value:
Code: Select all
cm = 100*clight/1e6;
Sys.S=15/2;
Sys.g=4/3;
Sys.B2 = cm*[30.2 17.7 1195 17.1 30.2]; % CF(2,q) with q = +2,+1,0,-1,-2
Sys.B4 = cm*[11 0.5 24.6 1.5 37.4 1.5 24.6 0.5 11]; % CF(4,q) with q = +4,+3,+2,+1,0,-1,-2,-3,-4
Sys.B6 = cm*[0.9 3.9 2.8 3.3 21.7 6.3 59.5 6.3 21.7 3.3 2.8 3.9 0.9]; % CF(6,q) with q = +6,+5,+4,+3,+2,+1,0,-1,-2,-3,-4,-5,-6
Exp.Field = 0.1; Exp.Temperature = linspace(2,300,100); Opt.Output = 'ChiCGS';
chi_vs_T = curry(Sys,Exp,Opt);
Sys.B2/B4/B6
, I consider Sys.CF2/4/6
with the same values:
Code: Select all
Sys.CF2 = cm*[30.2 17.7 1195 17.1 30.2]; % CF(2,q) with q = +2,+1,0,-1,-2
Sys.CF4 = cm*[11 0.5 24.6 1.5 37.4 1.5 24.6 0.5 11]; % CF(4,q) with q = +4,+3,+2,+1,0,-1,-2,-3,-4
Sys.CF6 = cm*[0.9 3.9 2.8 3.3 21.7 6.3 59.5 6.3 21.7 3.3 2.8 3.9 0.9]; % CF(6,q) with q = +6,+5,+4,+3,+2,+1,0,-1,-2,-3,-4,-5,-6
Moreover, we can also consider the L-S system:
Code: Select all
Sys.S = 5/2;
Sys.L = 5;
Sys.soc = 357*cm; % cm-1 from PHI manual
Sys.CF2 = cm*[30.2 17.7 1195 17.1 30.2]; % CF(2,q) with q = +2,+1,0,-1,-2
Sys.CF4 = cm*[11 0.5 24.6 1.5 37.4 1.5 24.6 0.5 11]; % CF(4,q) with q = +4,+3,+2,+1,0,-1,-2,-3,-4
Sys.CF6 = cm*[0.9 3.9 2.8 3.3 21.7 6.3 59.5 6.3 21.7 3.3 2.8 3.9 0.9]; % CF(6,q) with q = +6,+5,+4,+3,+2,+1,0,-1,-2,-3,-4,-5,-6
g
yet. I would need to define an effective "pseudo g-tensor" for each Kramers doublet, which will then be used to calculate the susceptibility at each temperature. Is that possible with Easyspin?Thanks!