Page 1 of 1

EPR on coplanar waveguide

Posted: Thu Jun 10, 2021 12:22 pm
by thanasis

I am trying to simulate EPR spectra recorded on a coplanar waveguide.

This is shown in the figure:

CPW_B0_B1.jpg
CPW_B0_B1.jpg (28.3 KiB) Viewed 5354 times

Here are shown the B0 (Zeeman) field from the magnet, and the microwave B1 field from the transmission line. The sample covers the entire area, so I there should be perpendicular- and some parallel-mode signals.

The "parallel-mode" signals should also give have a distribution of (B1,B0) angles due to the cylindrical symmetry of B1 around the transmission line.

From Easyspin's documentation there is no dedicated mode for transition lines for pepper. My approach is to carry out the calculation with an auxiliary function where I would calculate spectra from different modes.

Does that seem like a valid approach?I Is there something I overlook?

Thanks!


Re: EPR on coplanar waveguide

Posted: Fri Jun 11, 2021 4:33 pm
by Stefan Stoll

EasySpin does not have a built-in capability to average over an orientational distribution of B1. You can simulate parallel-mode and perpendicular mode spectra separately though, using Exp.Mode. That parameter also allows you to set an oblique angle. Here and here is a 2015 PRL paper we published that explains the theory behind this.


Re: EPR on coplanar waveguide

Posted: Thu Jun 24, 2021 4:14 am
by thanasis

Thanks Stefan,

While I can see a scheme where a series of B1 orientations are simulated, I made a simpler thought:
Since all B1 vectors can be analyzed to three components B1x,y,z, with B1z // B0 and B1x,y _ | _ B0, wouldn't it be enough to calculate two different spectra (B1 // B0 and B1 _ | _ B0) and then add them up with a proper weighing factor for each.

Wouldn't this be enough to simulate any distribution of B1 orientations?


Re: EPR on coplanar waveguide

Posted: Thu Jun 24, 2021 2:46 pm
by Stefan Stoll

That is possibly correct, but best check it using a numerical simulation using Exp.Mode.


Re: EPR on coplanar waveguide

Posted: Fri Jul 02, 2021 8:15 am
by thanasis

From a more general perspective, do you see any reason why the quantum mechanical transition probabilities and the spectral intensities (calculated with the Aasa–Vänngård correction), should be any different from those of field-swept CW spectra in regular cavities?

I expect pepper to be able to calculate them directly, at least for the simplest case of the perpendicular-mode contribution.

Do I overlook something obvious?


Re: EPR on coplanar waveguide

Posted: Mon Jul 05, 2021 5:00 am
by thanasis

Upon carefully reading pepper's documentation, I have a question regarding the definition of the alpha angle in beam experiments.

According to the definition:

B0 is along the laboratory z axis (zL), [0; 0; 1] in the lab frame. Together, B0 and k define the zL-yL plane, where yL is the laboratory y axis.

However, in the Faraday configuration, B0 || k, so how can the zL-yL plane be defined? This subtle detail is not covered either in Fig 1 of the 2015 PRL.

Starting off from the above definition of zL, this is what I can make of the k-angle (poynting vector with B0) and the alpha angles.

Is that the correct convention?

modes.jpg
modes.jpg (288.35 KiB) Viewed 5293 times

Re: EPR on coplanar waveguide

Posted: Wed Jul 14, 2021 10:35 am
by Stefan Stoll

Independent of the k tilt angle, a polarization angle of zero always means that the B1 vector has no xL component, and if the polarization angle is 90 degrees, then B1 is along the xL axis.

Here's the EasySpin code that sets up the B0, B1, and k vectors from the two angles given in Exp.Mode (called k_tilt and alpha_pol here):

Code: Select all

nB0 = [0; 0; 1]; % unit vector along B0, in lab coordinates

sk = sin(k_tilt);
ck = cos(k_tilt);
nk = [0; sk; ck]; % unit vector along wave vector k, in lab coordinates

ca = cos(alpha_pol);
nB1 = [sin(alpha_pol); -ca*ck; ca*sk]; % unit vector along mw field vector B1, in lab coordinates

Hopefully this clarifies things.


Re: EPR on coplanar waveguide

Posted: Fri Jul 16, 2021 6:32 am
by thanasis

Thanks for the clarification Stefan.

I have now corrected my scheme according to your code. It is always a right-handed reference frame with B0//z. Hopefully it captures the convention:

modes_new.jpg
modes_new.jpg (529.17 KiB) Viewed 5248 times

Re: EPR on coplanar waveguide

Posted: Fri Jul 16, 2021 9:30 am
by Stefan Stoll

I think in the lower plot, the alpha angle is not correct. It should go towards the +xL axis, not -xL.