2-component analysis system

General forum for EasySpin: questions, how to's, etc.
Post Reply
evgenia
Newbie
Posts: 2
Joined: Tue Mar 27, 2018 3:51 am

2-component analysis system

Post by evgenia »

Hello to all !

I am working in 2-component EPR simulations using the chili, but I was wonderng if there is any possible way to calculate from the simulated spectra the percentage of each population. As I am a new user of Easyspin for multicomponent systems any suggestion will be usefull for me.

Thank you in advance.

Best regards
Stefan Stoll
EasySpin Creator
Posts: 1073
Joined: Mon Jul 21, 2014 10:11 pm
Location: University of Washington

Re: 2-component analysis system

Post by Stefan Stoll »

Here is an example to get you started:

Code: Select all

clear

Sys1.g = [2.009 2.006 2.003];
Sys1.Nucs = '14N';
Sys1.A = [20 20 100];
Sys1.tcorr = 1e-9;
Sys1.weight = 0.1;

Sys2 = Sys1;
Sys2.tcorr = 5e-9;
Sys2.weight = 0.9;

Exp.mwFreq = 9.5;
Exp.Range = [330 350];

chili({Sys1,Sys2},Exp);
evgenia
Newbie
Posts: 2
Joined: Tue Mar 27, 2018 3:51 am

Re: 2-component analysis system

Post by evgenia »

Thank you very much for your help and time...
The percentage of each population is expressed by the Sys1 weight, is that right?
Post Reply