Page 1 of 1
Quadrupolar interaction Hamiltonian
Posted: Mon Feb 01, 2021 2:58 pm
by Krishk
If I use Sys.Q=10 in MHz and lets for the purpose of discussion, assume eta=0.
Does the Sys.Q includes 4I(2I-1) term? Or this Sys.Q is simply equal to VeQ/h, where V is the electric-field gradient matrix generated by DFT calculations, and Q is (scalar) the electric quadrupole moment that can be picked from the standard tables available in literatures.
Thanks.
Re: Quadrupolar interaction Hamiltonian
Posted: Tue Feb 09, 2021 1:54 am
by nwili
This is what the documentation says: https://easyspin.org/easyspin/documenta ... tem.html#Q
Code: Select all
eeQqh = 1; % MHz
eta = 0.2; % unitless
I = 1; % nuclear spin must be known!
Q = eeQqh/(4*I*(2*I-1)) * [-1+eta, -1-eta, 2]
so as I see it it includes 4I(2I-1) if you put it into Q.
Re: Quadrupolar interaction Hamiltonian
Posted: Thu May 20, 2021 11:43 pm
by Stefan Stoll
Sys,Q
is iunderstood by EasySpin's functions to be equal to e2qQ/h, as documented here. It does not include the mentioned spin-dependent scaling factor. Internally, EasySpin adds the denominator before building the quadrupole term in the spin Hamiltonian.
Re: Quadrupolar interaction Hamiltonian
Posted: Thu May 27, 2021 4:23 am
by nwili
The clarification in the documentation how to convert to the principal Q-values somehow confused me more than it clarified.
the Q in
Code: Select all
eeQqh = 1; % MHz
eta = 0.2; % unitless
I = 1; % nuclear spin must be known!
Q = eeQqh/(4*I*(2*I-1)) * [-1+eta, -1-eta, 2]
is NOT what one should put into Sys.Q.
Sorry for the confusion.
Re: Quadrupolar interaction Hamiltonian
Posted: Thu May 27, 2021 9:34 am
by Stefan Stoll
The documentation is correct.
There are several equivalent ways to input a given quadrupole tensor in Sys.Q
. They all result in the same spin Hamiltonian. Two of them are as follows:
Code: Select all
eeQqh = 1; % MHz
eta = 0.2; % unitless
% Method 1: provide e^2Qq/h and eta
Sys.Q = [eeQqh eta];
% Method 2: provide principal values of quadrupole tensor (MHz)
I = 1; % nuclear spin must be known!
Q = eeQqh/(4*I*(2*I-1)) * [-1+eta, -1-eta, 2]; % calculate principal values from e^2Qq/h, eta, and I
Sys.Q = Q;