User Tools

Site Tools


science:phd-notes:2025-02-17-obtd

Another possible bug in the OBTD calculations: Why are excitations stronger than decays?

Making sure that initial and final states are ordered correctly

Feast your eyes on the below figure:

It might seem fine and dandy, but consider this: If you look at for example $0f7/2 \rightarrow 0f5/2$ with a value of 3.2 %, note that it is larger than the reverse $0f5/2 \rightarrow 0f7/2$ which is at 2.3 %. Since $0f7/2$ is at lower energy than $0f5/2$ and consequently that $0f5/2 \rightarrow 0f7/2$ should be more energetically favourable than the opposite, then how come the opposite has a larger percentage of the OBTDs? It might simply be that I incorrectly have swapped some indices, let's take a closer look at that!

Recall that kshell-utilities checks whether or not the final state has lower energy than the initial state and swaps them if that is not the case. However, the OBTDs are stored in separate files, also organised after angular momentum and parity, for example '…_j0n_…_j2n_…', and I have not implemented such a check and swap for the OBTD files! The reverse file '…_j2n_…_j0n_…' does not exist as KSHELL stores both 0n to 2n and 2n to 0n in the '…_j0n_…_j2n_…' file, and since all the entries in that file is organised with 0n to the left and 2n to the right, I need a way to say which is which…

Here is an excerpt from a KSHELL log file containing transitions between $0^-$ and $1^-$ states (the $j$ values in the below list are multiplied by 2):

 M1 transition  mu_N^2  gl,gs=  1.1000 -0.1000  5.0270 -3.4430 parity -1 -1
  2Jf   idx  Ef        2Ji   idx  Ei          Ex        Mred.           B(EM )->        B(EM)<-         Mom.
   0     1   -391.893   2     1   -392.049    -0.157     -0.24234772      0.05873242      0.01957747      0.00000000
   0     1   -391.893   2     2   -391.739     0.154      0.22704159      0.05154788      0.01718263      0.00000000
   0     1   -391.893   2     3   -391.501     0.392      0.30656887      0.09398447      0.03132816      0.00000000

Consider now the relation between the reduced matrix element and the reduced transition probability: $$ B(\sigma \lambda; \xi_i j_i \rightarrow \xi_f j_f) = \frac{1}{2 j_i + 1} \mid ( \xi_f j_f \mid \mid M_{\sigma \lambda} \mid \mid \xi_i j_i ) \mid^2 . $$

If we take the reduced matrix element (Mred.) for the first transition, we see that

$$ \frac{(-0.24234772)^2}{1} = 0.0587324173891984 $$

$$ \frac{(-0.24234772)^2}{3} = 0.019577472463066133 $$

so if we take $B(EM) \rightarrow$ as the decay probability then it seems that the $0^-$ state is the initial state of the decay, while the $1^-$ state is the initial state of the excitation. This seems contrary to the header of the table…

Now consider that for this transition, the energy of the final state is actually higher than the energy of the initial state, aka. $E_x$ is negative. A decay where $E_f > E_i$ is no decay at all, but rather an excitation, and I would dare say that $B(EM) \rightarrow$ in the table consequently is the excitation probability. To make sense of it all, I will for transitions of negative $E_x$ flip the roles of initial and final, and decay and excite.

While conceptually simple, it proved to be a bit of a riddle to solve this programmatically because I want it to fit with my existing dictionary structure. I think it is solved now, and as any programmer should do, I implemented tests which I do believe covers all of the possible cases. The tests are called every time $\verb|_read_obtd|$ is called which is practically speaking every time $\verb|loadtxt|$ is called.

I have now double and triple checked that the OBTDs are organised so that $E_i > E_f$ and just to be sure I have put checks into the code that generates the OBTD grids that $E_i > E_f$ is indeed true, and something has happened to the values, however not what I was aiming for in this text… (protons left, neutrons right)

Wth is going on

So after all that making sure that the levels are correct, I still get that the excitation “strength” is larger than the decay. So let us now elaborate on why I'm calling it “strength” and not strength. In the plots we're just looking at the OBTDs which are not the complete expression for the (reduced) transition strength. So maybe we are led astray by that fact? Let's see what happens if we plot not only the OBTDs but the OBTDs multiplied by the single-particle transition matrix elements (see the definitions here). We're still not looking at the actual reduced strength as we would need to sum up over all the orbitals / single-particle contributions to get the actual strength and then we would no longer be able to make the grids.

Hmm, it seems that the excitation “strength” is still not afraid of being larger than the decay “strength”… What if we sum up without taking the abs of each term?

Nope, does not seem to solve anything. Let's think about the original assumption, namely that the decay strength should be larger than the excitation strength. That is an alright assumption, but remember that we are not actually looking at true strengths here, even if we multiply the OBTDs by the L, S terms. So maybe the assumption is bad for this situation?

Discussion

Enter your comment. Wiki syntax is allowed:
 
science/phd-notes/2025-02-17-obtd.txt · Last modified: 2025/03/31 14:56 by jon-dokuwiki