esfit to find off axis transitions
Posted: Sun Sep 07, 2014 9:42 am
I'm currently trying to find the orientations of some non-principle axis transitions from a set of powder data using esfit... with no success. Is this something that can be done using easySpin? I've tried isolating the data to a specific transition, but no matter what value I set the orientation to, esfit spits out the exact same number. For example, if I set Sys.Orientations = [0 0], esfit outputs 0 and 0... if I set the Orientations to [pi/8 pi/8], esfit outputs pi/8 and pi/8 and so on. So no fitting is truly being done.
My code is pretty simple:
Thanks in advance any help/advice!
My code is pretty simple:
Code: Select all
clear
%Load Tab Spaced File
%X column is mT
[B,spc] = textread('206.4GHz Cut.txt','%f %f');
%Defining Parameters
Sys.S = 2;
Sys.D=[-96993.9851 1931.4];
Sys.g = [2.0, 2.0, 2.0];
Sys.lw = 63;
Sys.Orientations = [0 0];
Exp.Range = [9000 11000]; %Narrowed down transition to specific range
Exp.mwFreq = 206.4;
Exp.Temperature = 11;
%Define parameters to be fit (with variation range)
Vary.Orientations = [2*pi, pi];
bestSys = esfit('pepper', spc, Sys, Vary, Exp);