Multicomponent in pepper mode

General forum for EasySpin: questions, how to's, etc.
Post Reply
jpablo_sa
Newbie
Posts: 3
Joined: Thu Jun 04, 2015 5:18 pm

Multicomponent in pepper mode

Post by jpablo_sa »

Dear Dr. Stefan,
I have troubles when simulate multicomponent systems in pepper, the problem comes from the experimental frequency data:

>> clear
[B,spc] = eprload('/Users/cat2_PAA_5s_150Kb.DSC');
Sys1.g = [2.0081 2.0368];
Sys1.lw = 1;
Sys1.tcorr = 5e-9;
Sys2.g = [2.0071];
Sys2.lw = 1.5;
Sys1.tcorr = 5e-9;
Exp.mwFreq = 9.439709;
Exp.CenterSweep = [335.8 15];
pepper(Sys1,Sys2,Exp);


Error using pepper (line 184)
Please supply the microwave frequency in Exp.mwFreq.

Error in pepper (line 105)




Thanyou in advance for your help

JPSV
Matt Krzyaniak
EasySpin Guru
Posts: 153
Joined: Tue Jul 22, 2014 11:01 am
Location: Northwestern University

Re: Multicomponent in pepper mode

Post by Matt Krzyaniak »

Try:

Code: Select all

[B,spc] = eprload('/Users/cat2_PAA_5s_150Kb.DSC'); 
Sys1.g = [2.0081 2.0368];
Sys1.lw = 1;
Sys1.tcorr = 5e-9;
Sys2.g = [2.0071];
Sys2.lw = 1.5;
Sys1.tcorr = 5e-9;
Exp.mwFreq = 9.439709; 
Exp.CenterSweep  = [335.8 15]; 
pepper({Sys1,Sys2},Exp);

note the { } around sys1 and sys2
jpablo_sa
Newbie
Posts: 3
Joined: Thu Jun 04, 2015 5:18 pm

Re: Multicomponent in pepper mode

Post by jpablo_sa »

Many thanks, it works!

JPSV
Post Reply