photoselect

Calculate orientation-dependent photoexcitation probability for magnetophotoselection

Syntax
w = photoselect(tdm,ori,k,alpha)
Description

For photo-generated paramagnetic centers (such as photo-excited triplet states), photoselect calculates the photo-excitation probability w for a given light excitation geometry, molecular orientation, and transition dipole moment orientation. Values for w range between 0 and 1. w=0 indicates no excitation at all (E-field is perpendicular to transition dipole moment), and w=1 indicates full excitation (E-field is parallel to transition dipole moment). These probabilities co-determine spectral intensities in photo-excited systems via magnetophotoselection.

tdm specifies the orientation in the molecular frame of the electric transition dipole moment (tdm) of the the optical transition that is being excited. There are three ways to specify this orientation:

For example, 'y', [0;1;0] and [pi/2 pi/2] all represents a transition dipole moment along the molecular y axis.

ori gives the three Euler angles (in radians) [phi theta chi] that describe the orientation of the lab frame relative to the molecular frame. phi and theta determine the direction of the lab z axis (zL, aligned with the static magnetic field), and chi additionally determines the directions of the lab x and y axes (xL and yL). To get the vectors of xL, yL and zL represented in the molecular frame, use [xL,yL,zL] = erot(ori,'rows'). To get the molecular-frame vectors of xM, yM and zM represented in the lab frame, use [xM,yM,zM] = erot(ori,'cols'). See erot and the documentation on Euler angles for more details.

If the third angle chi is omitted in ori, photoselect computes the integral of the photo-excitation selection weight over the third angle. This is useful when using photoselect within a powder averaging loop.

k specifies the propagation direction of the excitation light beam in the laboratory frame, again either as a letter code, a 3-element vector, or a set of two polar angles [phi_k theta_k] (in radians). For example, 'y' and [0;1;0] and [pi/2 pi/2] are equivalent ways to indicate propagation along the laboratory y axis (perpendicular to the static magnetic field), and 'z' and [0;0;1] and [0 0] are equivalent ways to indicate propagation along the laboratory z axis (parallel to the static magnetic field). k='y' is the most common experimental configuration.

alpha indicates the polarization angle, in radians. It determines the direction of the E-field vector in the plane perpendicular to the propagation direction. You can calculate the E-field direction in the lab frame using [Edir,~,k] = erot([phi_k theta_k alpha],'rows'), where phi_k and theta_k are the polar angles indicating the direction of the propagation vector k.

For the common case of k='y', alpha=pi/2 or -pi/2 put the E-field along the laboratory x axis (perpendicular to the magnetic field), and alpha=0 or pi put the E-field along laboratory z axis (parallel to the magnetic field).

To obtain the photoexcitation probability for an unpolarized beam (i.e. a beam with a uniform distribution of E-field directions in the plane perpendicular to its propagation direction), set alpha=NaN. An unpolarized beam is often generated from a polarized beam using a depolarizer. Note that excitation with an unpolarized beam is different from a fully isotropic excitation, where the E-field is uniformly distributed in all directions. With isotropic excitation, molecular with all orientations are equally excited, whereas with an unpolarized beam, molecules with transition dipole moment close to parallel to the propagation direction are not excited.

This function is called by pepper and other functions that support photoselection via the experiment parameter Exp.lightBeam.

Examples

Here is a simple example

tdm = 'xy';                % tdm along bisector of molecular xy plane
ori = [10 50 210]*pi/180;  % tilted sample
k = 'y';                   % light propagation along lab y axis
alpha = pi;                % gives E-field parallel to lab z axis (B0)
w = photoselect(tdm,ori,k,alpha)
w =
    0.3938

To get the photoselection weight for an unpolarized beam, use

w = photoselect(tdm,ori,k,NaN)
w =
    0.4727

For a powder sample, the excitation probabilities of the standard configurations k='y' with alpha=0 (E-field parallel to magnetic field) and alpha=pi/2 (E-field perpendicular to magnetic field) add up to 100 percent if combined appropriately:

tdm = [30 79]*pi/180;
ori = [235 41]*pi/180;  % integrate over chi
k = 'y';
w_para = photoselect(tdm,ori,k,0)
w_perp = photoselect(tdm,ori,k,pi/2)
w_total = w_para + 2*w_perp
w_para =
    0.1933
w_perp =
    0.4033
w_total =
    1.0000
See also

pepper, resfields, resfreqs_matrix, resfreqs_perturb, spin-polarized systems