I am comparing the results of levelsplot
for parallel/perpendicular MW modes. While the powder spectra from pepper
correctly show the higher intensity of the half-field absorption, the vertical bars in the Zeeman plots do not reflect this.
From the documentation, I see that resfields
and pepper
pull the mode through Exp.mwMode
(though in the code they seem to refer to Exp.Mode
). In any case, when levelsplot
pulls the results from resfields
it doesn't seem to properly import the mw Mode to calculate the transition probabilities that appear on the Zeeman plot.
Is there something I am missing?
Here is a sample code:
Code: Select all
cm=100*clight/1e6; % Conversion constant from cm-1 to MHz
Sys.S=1;
Sys.g=[2 2 2];
Sys.lwpp=[7 2];
Sys.D = [0.05 0]*cm;
Exp.Temperature = 4.5; Exp.mwFreq=9.5; Exp.Range=[0 600]; Exp.nPoints=4096;
Exp.mwMode = 'parallel';
Par.Units = 'cm^-1';
figure(1)
pepper(Sys,Exp)
figure(2)
levelsplot(Sys,'xz',Exp.Range,Exp.mwFreq,Par);
Thanks in advance!