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!
Vanadium 51 Trouble: PLEASE HELP!!
Re: Vanadium 51 Trouble: PLEASE HELP!!
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);
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);
-
- EasySpin Creator
- Posts: 1106
- Joined: Mon Jul 21, 2014 10:11 pm
- Location: University of Washington
Re: Vanadium 51 Trouble: PLEASE HELP!!
Exp.mwFreg -> Exp.mwFreq should fix the problem.
-
- Newbie
- Posts: 2
- Joined: Tue Dec 22, 2015 8:48 pm
Re: Vanadium 51 Trouble: PLEASE HELP!!
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).
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).
-
- EasySpin Creator
- Posts: 1106
- Joined: Mon Jul 21, 2014 10:11 pm
- Location: University of Washington
Re: Vanadium 51 Trouble: PLEASE HELP!!
Try
Code: Select all
[B,spc] = eprload(...);
[Bsim,spcsim] = pepper(...);
spcsim = rescale(spcsim,spc,'maxabs');
plot(B,spc,Bsim,spcsim);