Search found 15 matches

by ykliao
Thu Sep 21, 2023 1:07 am
Forum: General forum
Topic: error dot indexing
Replies: 3
Views: 5325

Re: error dot indexing

I have one question related to this topic. I'm more used to assign structures as Vary = struct('abc', 123); With this I can avoid situations like the variable has been assigned to something else before. Or I can also avoid having conflicting fields in one structure. For instance, when I am assessing...
by ykliao
Thu Jul 20, 2023 1:47 am
Forum: General forum
Topic: How to simulate Rhombograms in this literature
Replies: 2
Views: 6702

Re: How to simulate Rhombograms in this literature

You can calculate the resfields for an array of E/D.

by ykliao
Tue May 16, 2023 7:03 am
Forum: General forum
Topic: Unable load output file generated by ORCA using easyspin 6.0.0_dev.51
Replies: 4
Views: 9529

Re: Unable load output file generated by ORCA using easyspin 6.0.0_dev.51

I think the problem is that in

Code: Select all

orca2easyspin_proptxt

at line 123 is written

Code: Select all

if ~all(A_vecs==0,'all')

. And the use of

Code: Select all

all(A, 'all')

is only available for Matlab R2018b and later. So you should get a later version of Matlab.

matlab_allfunction.PNG
matlab_allfunction.PNG (104.49 KiB) Viewed 9435 times
by ykliao
Thu Apr 27, 2023 2:21 am
Forum: General forum
Topic: Suggestions to establish group communication groups such as whatsapp
Replies: 5
Views: 3524

Re: Suggestions to establish group communication groups such as whatsapp

I think it's not just that only the developers are answering the questions. A lot of the time is that the people who ask questions only care the answer from the notable users. I personally tried to reach out people who ask questions, re-post or send private message, and most of the time it's just ig...
by ykliao
Wed May 11, 2022 5:02 am
Forum: Bugs
Topic: Pepper, transition probabilities
Replies: 2
Views: 7163

Re: Pepper, transition probabilities

I figured that in levelsplot the Freq2Field is set to zero when running resfields. It appears as the reason for the difference between pepper and levelsplot. In the documentation of pepper it is suggested to never change the default value Freq2Field . I do not understand why in some cases this conve...
by ykliao
Fri Feb 04, 2022 8:36 am
Forum: Bugs
Topic: Development version outdated
Replies: 2
Views: 6841

Re: Development version outdated

I'm not sure if it is true, but I feel this version is running faster. Just want to express my appreciation here. Thank you for the effort!

by ykliao
Wed Jan 12, 2022 2:59 am
Forum: General forum
Topic: 51V EPR simulation
Replies: 5
Views: 3581

Re: 51V EPR simulation

by ykliao
Wed Dec 22, 2021 9:27 am
Forum: General forum
Topic: Cu and 51V simulation attempts
Replies: 6
Views: 7407

Re: Cu and 51V simulation attempts

I think you need to give anisotropic g-tensor and hyperfine tensor.

by ykliao
Mon Oct 18, 2021 5:21 am
Forum: General forum
Topic: Something is not right in my script...
Replies: 2
Views: 5976

Re: Something is not right in my script...

Hello, I think instead of Sys.gx = 2.004; Sys.gy = 2.004; Sys.gz = 2.004; you should use gx = 2.004; gy = 2.004; gz = 2.004; Sys.g = [gx, gy, gz]; and by the way, there are typos where you calculate the inhomogeneous linewidth deltaHx=deltaH_WxGaussToMHz; % Individual values of delta H, in the W ver...