I'm relatively new to the field, and am trying to understand the meaning of the intensity output from the
resfreqs (and resfields) solvers. The doc page does not state what the value specifically corresponds to (other than some parameterisation of the strength of the transition), and the resfreqs and resfields solvers appear to give different values for the same transition.
Looking a simple example of a free electron:
Code: Select all
Sys = struct('g',2.002319,'S',.5); % Free electron
Exp = struct('Field',50); % mT
[Freq,Int] = resfreqs_matrix(Sys,Exp);
fprintf('Resfreqs: Freq = %f MHz, Int = %f\n',Freq,Int);
Exp = struct('mwFreq',1.401247369,'Range',[0,100]); % GHz
[Freq,Int] = resfields(Sys,Exp);
fprintf('Resfields: Freq = %f MHz, Int = %f\n',Freq,Int);
outputs two different intensities:
Code: Select all
Resfreqs: Freq = 1401.247369 MHz, Int = 196.349419
Resfields: Field = 50.000000 mT, Int = 7.006237
Could anyone help clarify what these intensities mean, what are the units, and how they correspond to something physically measurable? The spin system I'm working on is significantly more complex than this and it would be very useful to be able to convert these intensities to something physical or to normalise them against something.