Page 1 of 1

2-component analysis system

Posted: Tue Mar 27, 2018 4:12 am
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

Re: 2-component analysis system

Posted: Tue Mar 27, 2018 4:18 pm
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);

Re: 2-component analysis system

Posted: Wed Mar 28, 2018 1:02 am
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?