Hello all,
I recently started using Easy spin by following the steps mentioned in the Prof. Stefan Stoll video lectures.
I need to simulate the following EPR spectra of a vanadium complex
A starting code for the spectra will be appreciated.
Thank you for the help
51V EPR simulation
51V EPR simulation
- Attachments
-
- 51V_Try.png (199.46 KiB) Viewed 6268 times
-
- 51V.tif (241.27 KiB) Viewed 6270 times
Re: 51V EPR simulation
There are examples available here.
https://www.easyspin.org/easyspin/docum ... smain.html
-
- EasySpin Creator
- Posts: 1108
- Joined: Mon Jul 21, 2014 10:11 pm
- Location: University of Washington
Re: 51V EPR simulation
In the particular spectrum you posted, it looks like you might have some baseline issues (left baseline and right baseline are not zero). That will make it difficult to fit the spectrum with EasySpin.
Re: 51V EPR simulation
I am also facing the same baseline issues (left baseline and right baseline are not zero). It will be helpful if someone can help me regarding this type of baseline correction.
Re: 51V EPR simulation
In my opinion, If it considered that there is linear decrease on the above EPR spectra, one can use "originlab" software with subtract line option (Analysis:Data Manipulation:Subtract Straight Line).
Re: 51V EPR simulation
Thanks Seradir,
I have solved the problem in my case. Actually the background is coming from my substrate on top of which I have deposited my sample. So in that case I have substracted the substrate from my actual sample data like below:
%Imports Data, then the background and subtracts out the background
[B1, spc1, Params1] = eprload('Sample.DTA');
spc2 = spc1;
Params = Params1;
[B3, spc3, Params3] = eprload('Substrate.DTA');
spc = spc2 - spc3;
Hope, I am correct and this will help someone.
Thanks,
Sangita