Page 1 of 1

Vanadium 51 Trouble: PLEASE HELP!!

Posted: Tue Dec 22, 2015 8:54 pm
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!

Re: Vanadium 51 Trouble: PLEASE HELP!!

Posted: Wed Dec 23, 2015 1:01 am
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);

Re: Vanadium 51 Trouble: PLEASE HELP!!

Posted: Wed Dec 23, 2015 9:09 am
by Stefan Stoll
Exp.mwFreg -> Exp.mwFreq should fix the problem.

Re: Vanadium 51 Trouble: PLEASE HELP!!

Posted: Wed Dec 23, 2015 12:13 pm
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).

Re: Vanadium 51 Trouble: PLEASE HELP!!

Posted: Tue Dec 29, 2015 7:41 am
by Stefan Stoll
Try

Code: Select all

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