Search found 1098 matches

by Stefan Stoll
Sat Mar 08, 2025 3:34 pm
Forum: General forum
Topic: Steven's operators acting on L: Interpretation of parameters
Replies: 1
Views: 14123

Re: Steven's operators acting on L: Interpretation of parameters

The matrices for the CF parameters Sys.CF1 etc. are implemented in the EasySpin function ham_cf.m. Have a look at the source code of this function here. It looks like these are just Stevens operators, since ham_cf calls stev.

by Stefan Stoll
Sat Mar 08, 2025 3:29 pm
Forum: General forum
Topic: EPR data from DFT calculation
Replies: 1
Views: 10374

Re: EPR data from DFT calculation

If you used ORCA to calculate spin Hamiltonian parameters, you can directly import them into MATLAB/EasySpin using orca2easyspin.

by Stefan Stoll
Sat Mar 08, 2025 3:28 pm
Forum: General forum
Topic: Simulation of V Complex
Replies: 2
Views: 11224

Re: Simulation of V Complex

If you have superexchange coupling between two V, then you have to define a spin system with two electron spins and two 51V nuclei. You'll need Sys.S = [1/2 1/2] and Sys.Nucs = 51V,51V and a value in Sys.J . Sys.A and Sys.g` must contain all A and g tensors. See the documentation on spin systems on ...
by Stefan Stoll
Sat Mar 08, 2025 3:01 pm
Forum: General forum
Topic: 51V multiple oxidation states fitting
Replies: 3
Views: 15371

Re: 51V multiple oxidation states fitting

I would start the analysis with the assumption of a single species. Maybe focus on fitting the isolated high-field lines first. Here is a starting point, assuming this is a tumbling vanadyl: clear, clc VO.S = 1/2; VO.Nucs = '51V'; VO.A = 263+[-1 -1 2]*105; VO.g = [1.984 1.984 1.964]; VO.tcorr = 0.1e...
by Stefan Stoll
Sat Mar 08, 2025 2:34 pm
Forum: General forum
Topic: EasySpin on NMR Box
Replies: 1
Views: 10119

Re: EasySpin on NMR Box

We here are EasySpin don't have experience with NMRbox - probably best to contact the NMRbox folks with this question, e.g. see their community page.

by Stefan Stoll
Sat Mar 08, 2025 2:23 pm
Forum: General forum
Topic: Request for Help to Reproduce X-band CW-EPR Spectrum in MATLAB Using EasySpin
Replies: 1
Views: 10011

Re: Request for Help to Reproduce X-band CW-EPR Spectrum in MATLAB Using EasySpin

Have a look at the example in examples/solidstate/photosystem2_oec.m - this should be exactly what you are looking for.

by Stefan Stoll
Sat Mar 08, 2025 2:17 pm
Forum: General forum
Topic: three-dimensional magnetization
Replies: 3
Views: 29035

Re: three-dimensional magnetization

Thanks, you are correct - thanks for reporting! We'll correct the documentation for curry.

by Stefan Stoll
Thu Jan 23, 2025 10:25 pm
Forum: General forum
Topic: Ripples in Simulation
Replies: 2
Views: 15650

Re: Ripples in Simulation

Your Sys0 is very anisotropic and has a very narrow linewidth, particularly around the z axis. This will lead to ripples if your grid is too small. See here: clear, clc Exp.CenterSweep = [320 600]; % mT Exp.mwFreq = 9.353809; % GHz Exp.nPoints = 2000; Exp.ModAmp = 1; % mT Exp.Temperature = 10; % K S...
by Stefan Stoll
Thu Jan 23, 2025 10:16 pm
Forum: General forum
Topic: Custom lwpp parameters and individual intensity fits
Replies: 2
Views: 15609

Re: Custom lwpp parameters and individual intensity fits

Write a function that simulates your spectrum, returns the transitions separately (Opt.separate = 'transitions') and then convolves each of them with a separate linewidth (use 'convspec').

by Stefan Stoll
Thu Jan 23, 2025 10:14 pm
Forum: General forum
Topic: multicomponent fitting
Replies: 1
Views: 14063

Re: multicomponent fitting

Dirk, the problem lies with how you call esfit. The interface for esfit has changed from ES 5 to ES 6. Please refer to the documentation on least-squares fitting. On the documentation site you can also find a migration guide from ES 5 to 6.