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
2-component analysis system
-
- EasySpin Creator
- Posts: 1120
- Joined: Mon Jul 21, 2014 10:11 pm
- Location: University of Washington
Re: 2-component analysis system
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
Thank you very much for your help and time...
The percentage of each population is expressed by the Sys1 weight, is that right?
The percentage of each population is expressed by the Sys1 weight, is that right?