Page 1 of 1

Output separate transitions for specific crystal orientation

Posted: Tue Mar 29, 2016 4:29 pm
by Murad
Hi,
I am using pepper to generate the EPR spectrum of two coupled spins. I would like to find out which Zeeman levels are active in each transitions at a given crystal orientation. However, using

Code: Select all

Opt.Output='separate';
at a specific crystal orientation does not work because EasySpin is looking to 'separate' the spectra of individual crystal orientations rather than separate individual transitions as would be the case if

Code: Select all

Exp.CrystalOrientation=[];
. Is it possible to get both of these pieces of information in one go? Currently I am calculating the full spectrum, with

Code: Select all

[x,y,trans]=pepper(Sys,Exp,Opt);
and then examining trans and using Opt.Transitions to generate the individual transitions. Is there a faster way around this?
Thanks,
Murad

Re: Output separate transitions for specific crystal orienta

Posted: Wed Mar 30, 2016 10:39 am
by Stefan Stoll
For a crystal spectrum, you can use resfields(). This will give you a list of resonance fields and intensities.

Re: Output separate transitions for specific crystal orienta

Posted: Wed Mar 30, 2016 10:27 pm
by Murad
Thank you very much - that was exactly what I was looking for!