How does the program calculate the population of triplet sublevels?
Hello,
The populations of the triplet sublevel is [Px=1 Py=0.3 Pz=2] at zero field position.
According to the theory, when B0 // X, the population of high-field triplet state sublevels are P0=Px, P-1 and P+1 = 1/2(Pz+Py).
As you can see below in the example program, Exp.Temperature = [1 0.2 2], if B0 // X, P0=Px=1, P-1 and P+1 = 1.1.
If you check the levelplot (attached below) and the distribution of population, it should be an emissive signal at low field and absorptive at higher field.
My quetion is why the spectrum shows two emissive transition (attached below)?? How does the program calculate the highfield population?
Thank you very much!
T.S = 1;
T.D = [-6148 424]; % MHz
T.lwpp = 1;
Exp.mwFreq = 9.738;
Exp.Range = [0 700];
Exp.Harmonic = 0; % no field modulation
Exp.Temperature = [1 0.2 2]; % zero-field populations (x,y,z)
Exp.CrystalOrientation = [0 pi/2]; %B//x
pepper(T,Exp);
figure(2)
Ori = 'x'; % B_0 // x
subplot(2,2,1);
levelsplot(T,'x',Exp.Range,Exp.mwFreq);
title('Ori = x: B_0 // x');
axis([0 700 -20 20])