Search found 186 matches

by katarkon
Thu Dec 06, 2018 9:44 pm
Forum: General forum
Topic: Esfit minimisation for curry - chi*T vs T and M vs H data
Replies: 8
Views: 4753

Re: Esfit minimisation for curry - chi*T vs T and M vs H dat

I think we can ask the developers to write a custom version of esfit supporting such feature. The best way is usage of additional fitting options like FitOpt.RMS='absolute' (by default) or FitOpt.RMS='relative' (RMS error is scaled according to experimental datapoint value). This feature also may be...
by katarkon
Wed Dec 05, 2018 9:57 pm
Forum: General forum
Topic: Esfit minimisation for curry - chi*T vs T and M vs H data
Replies: 8
Views: 4753

Re: Esfit minimisation for curry - chi*T vs T and M vs H dat

Yes, I'm familiar with the restriction that the magnetic data should not be automatically rescaled with esfit . I propose to rescale the initial experimental data and transfer the rescale factor to custom simulation function (which will be used anyway). So, the simulated dataset have to be rescaled ...
by katarkon
Wed Dec 05, 2018 9:30 pm
Forum: General forum
Topic: line shape
Replies: 1
Views: 1622

Re: line shape

It gives true Voigtian lineshape (the convolution).
by katarkon
Sun Dec 02, 2018 9:42 pm
Forum: General forum
Topic: Esfit minimisation for curry - chi*T vs T and M vs H data
Replies: 8
Views: 4753

Re: Esfit minimisation for curry - chi*T vs T and M vs H dat

For my experience, the fitting procedure for different datasets requires concatenation of the experimental data and writing a custom simulation function anyway. I think there are no problem to rescale both experimental and simulated data via rescale function.
by katarkon
Wed Nov 28, 2018 10:35 am
Forum: General forum
Topic: Question about simulating asymmetrical biradical spectra
Replies: 6
Views: 3337

Re: Question about simulating asymmetrical biradical spectra

You may try to reduce the basis ( Opt.LLKM ) to decrease the memory consumption. Your spin system is too large for default basis. You may check it with Opt.Verbosity=1 . Also You may write custom simulation function using resfields and arbitrary line broadening. Or use pepper with separate output, p...
by katarkon
Sat May 19, 2018 10:55 pm
Forum: Bugs
Topic: Strange warning in pepper function
Replies: 3
Views: 3452

Re: Strange warning in pepper function

Here is the output with Opt.Verbosity=2 single spin system component 1: 1 isotopologues =begin=pepper=====20-May-2018 08:47:25================= log level 2 -general----------------------------------------------- system with 6 spin(s) and 324 states field sweep, mw frequency 9.65 GHz frequency 9.65 G...
by katarkon
Fri May 18, 2018 3:13 am
Forum: Bugs
Topic: Strange warning in pepper function
Replies: 3
Views: 3452

Strange warning in pepper function

When I try to simulate the spectrum with pepper function, a strange warning occurs occasionally Warning: None of the 1 requested eigenvalues converged. > In eigs>processEUPDinfo at 1338 In eigs at 357 In C:\easyspin-5.2.11\easyspin\resfields.p>resfields at 448 In C:\easyspin-5.2.11\easyspin\pepper.p...
by katarkon
Mon May 14, 2018 5:24 am
Forum: Bugs
Topic: EasySpin Version 5.2.15 is not working.
Replies: 2
Views: 2684

Re: EasySpin Version 5.2.15 is not working.

Try to type easyspin in command window and post its output here. Take an attention on the system date and expiry date.
by katarkon
Thu Apr 12, 2018 5:04 am
Forum: Bugs
Topic: Small bug in resfields in hybrid mode
Replies: 0
Views: 7384

Small bug in resfields in hybrid mode

I found that resfields returns some resonance fields with zero intensities when working in hybrid mode regardless from Opt.Threshold parameter. The code: clear Sys.Nucs = '63Cu,14N'; Sys.S=[0.5 0.5]; Sys.g = [2.15;2.0023]; Sys.A=mt2mhz([120 0;0 15]/10); Sys.lwpp = [0 0.65]; % mT Sys.J=1000; Exp.mwFr...
by katarkon
Wed Apr 04, 2018 3:47 am
Forum: General forum
Topic: Fit multiple systems from FOR loop
Replies: 5
Views: 2390

Re: Fit multiple systems from FOR loop

I suggest You have to check the dimensions of the pepper output and Your array calcspc as well as the result or the sum(calcspc). I'm afraid that pepper returns column vector instead row. In this case calcspc(i,:) = calc'; should solve the problem.