Page 1 of 1

How to simulate decay of absorption

Posted: Wed Sep 14, 2022 2:34 am
by Kob@yashi

Hello all--after struggling for a while with no progress,
I was wondering if it was even possible to simulate this cobalt spectrum
I can't reproduce the decay of gz and overlap with gy. How can I simulate this spectra?
I have no idea what parameters I should add or change.Image

Sys.g = [2.0 2.173 2.55];
Sys.Nucs = 'Co';
Sys.A = [70 0.00001 130];
Sys.lwpp = [2.1 0.005];
Exp.mwFreq = 9.075;
Exp.Range = [200 380];
[B, spc] = textread('data.txt','%f %f');
Sys0 = Sys;
Sys0.g(1) = 2.13;
Sys0.g(2) = 2.173;
Sys0.g(3) = 2.53;
Vary.A = [5 0 5];
SimOpt.Method = 'perturb';
FitOpt.Method = 'simplex int';
esfit('pepper',spc,Sys0,Vary,Exp,SimOpt,FitOpt);


Re: How to simulate decay of absorption

Posted: Wed Sep 21, 2022 9:25 pm
by Stefan Stoll

This might be a situation where Sys.gAStrain might be needed:

Code: Select all

Sys.gStrain = [0 0 0.03];  % setting only 3rd element, you might need to set 1st and 2nd as well
Sys.AStrain = [0 0 10];  % setting only 3rd element, you might need to set 1st and 2nd as well
Sys.gAStrainCorr = -1;

Re: How to simulate decay of absorption

Posted: Mon Oct 10, 2022 9:24 pm
by Kob@yashi

Thanks you sir. That code seem to work as I wanted !

One more thing, I want to fit the intensity of gz and gy absorption.Which code should I add or change ?

スクリーンショット 2022-10-11 13.10.26.png
スクリーンショット 2022-10-11 13.10.26.png (655.68 KiB) Viewed 1358 times