Meaning of 'coupled' initState for triplet-pair
Hi all,
I am trying to model spectra for a coupled triplet-pair using pepper in version 6.0.0-dev.53, and have been trying out the spin-polarisation capability. As seen in the tripletpair_singletfission example, using initState = {[0,0,0,0,0,0,1,0,0],'eigen'} initialises the triplet-pair in the Q0 state, i.e S=2 and m_s=0.
According to cgmatrix(1,1), I would expect using initState = {[0,0,1,0,0,0,0,0,0],'coupled'} would also correspond to the Q0 state, but it gives a very different spectrum that seems to populate the Q2 and Q-2. It seems that the state is changing as the field is swept, but I'm not sure which state Easyspin is using at each field value. If anyone knows I would greatly appreciate the help, I've attached my code below.
Code: Select all
clear all
sys.S = [1,1];
sys.D = [1000,0;1000,0];
sys.DFrame = [0,0,0;0,0,0];
sys.J = 1e6;
sys.initState = {[0,0,1,0,0,0,0,0,0],'coupled'};
sys.lwpp = 1;
Exp.mwFreq = 9.8;
Exp.Range = [320,380];
Exp.Harmonic = 0;
pepper(sys,Exp)