In the book "Electron paramagnetic resonace: a practioner's toolkit" chapter 13, p.494-497 I've found out the iteresting example. There is in figure 13.8 simulation of the EPR spectrum of the F center in KCl considering the first and second coordination spheres only. I've written a code using Euler angles for the first coordination sphere, it was simple, but I can't understand how to describe the second sphere. I mean, I've determined Euler angles for the second one, but the length of the vector will change: the square root of 2 instead 1. How can I describe this things? Thank you for your time.
Code: Select all
clear
S=1/2;
g=2.0;
Sys.Nucs = '35Cl,39K,39K,39K,39K,39K,39K';
A_35Cl = 4664;
A_39K = 231;
Sys.A = [A_35Cl;A_39K;A_39K;A_39K;A_39K;A_39K;A_39K];
Sys.Apa = [0 0 0; 0 0 0;0 2 0;0 1 0; 0 1 1; 0 1 2; 0 1 3]*pi/2;
Sys.lwpp = [0 0.65];
Exp.mwFreq = 9.05;
Exp.Range = [300 350];
Opt.Method = 'perturb';
Opt.nKnots = [61 0];
pepper(Sys,Exp,Opt);