Vanadium 51 Trouble: PLEASE HELP!!

General forum for EasySpin: questions, how to's, etc.
Post Reply
Hempfling10
Newbie
Posts: 2
Joined: Tue Dec 22, 2015 8:48 pm

Vanadium 51 Trouble: PLEASE HELP!!

Post by Hempfling10 »

Hey,
I'm having trouble geting the beautiful 8 line spectrum of vanadium(IV). Below is my code thus far:
Sys.S = 7/2;
Sys.g = [1.9875 1.9835 1.9510];
Sys.lwpp = .5;
Sys.Nucs = '51V';
Sys.AStrain = [175 180 505];
Exp.Harmonic = 1
Exp.mwFreg = 9.78;
Exp.Range = [260 440];
Exp.nPoints = 2048;
pepper(Sys,Exp);

I also tried:
Sys.S = 7/2;
Sys.g = [1.9875 1.9835 1.9510];
Sys.lwpp = .5
Sys.AStrain = [175 180 505];
Exp.Harmonic = 1
Exp.mwFreg = 9.78;
Exp.Range = [260 440];
Exp.nPoints = 2048;
pepper(Sys,Exp);

Thanks for any help in advance!
katarkon
Local Expert
Posts: 188
Joined: Mon Jan 12, 2015 4:01 am

Re: Vanadium 51 Trouble: PLEASE HELP!!

Post by katarkon »

Try this script:

Sys.S = 1/2;
Sys.g = [1.9875 1.9835 1.9510];
Sys.lwpp = .5;
Sys.Nucs = '51V';
Sys.A = [175 180 505];
Exp.Harmonic = 1
Exp.mwFreg = 9.78;
Exp.Range = [260 440];
Exp.nPoints = 2048;
pepper(Sys,Exp);
Stefan Stoll
EasySpin Creator
Posts: 1085
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: Vanadium 51 Trouble: PLEASE HELP!!

Post by Stefan Stoll »

Exp.mwFreg -> Exp.mwFreq should fix the problem.
Hempfling10
Newbie
Posts: 2
Joined: Tue Dec 22, 2015 8:48 pm

Re: Vanadium 51 Trouble: PLEASE HELP!!

Post by Hempfling10 »

It worked thanks.
Also, How would I go about putting experimental results on top of the simulation? What would be the code? I tried this with eprload:

[B,spc] = eprload('mydata.DTA'); % Bruker BES3T
[B,spc] = eprload('mydata.DSC'); % Bruker BES3T
[B,spc] = eprload('mydata'); % Bruker BES3T

except using the path(C:/eprfiles/mydata as an example).
Stefan Stoll
EasySpin Creator
Posts: 1085
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: Vanadium 51 Trouble: PLEASE HELP!!

Post by Stefan Stoll »

Try

Code: Select all

[B,spc] = eprload(...);
[Bsim,spcsim] = pepper(...);
spcsim = rescale(spcsim,spc,'maxabs');
plot(B,spc,Bsim,spcsim);
Post Reply